From 8d92412380926454e7269edbc3049fe4f8e5913d Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Fri, 28 Dec 2018 07:28:55 +0100 Subject: [PATCH] make_mirror.sh: put double quotes around string --- make_mirror.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_mirror.sh b/make_mirror.sh index 28689cb..762db2c 100755 --- a/make_mirror.sh +++ b/make_mirror.sh @@ -20,7 +20,7 @@ if [ -e "$mirrordir/dists/unstable/Release" ]; then case "$http_code" in 200) ;; # need update 304) echo up-to-date; exit 0;; - *) echo unexpected status: $http_code; exit 1;; + *) echo "unexpected status: $http_code"; exit 1;; esac fi