From 80f5f28d38e59b550ab7e7465cfa48defee343a6 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Wed, 4 Oct 2017 21:25:25 +0200 Subject: Fix incorrect quoting of quotes (the previous quotes had no effect beyond unquoting) --- contrib/verifybinaries/verify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/verifybinaries/verify.sh') diff --git a/contrib/verifybinaries/verify.sh b/contrib/verifybinaries/verify.sh index bf2a10337d..e0266bf08a 100755 --- a/contrib/verifybinaries/verify.sh +++ b/contrib/verifybinaries/verify.sh @@ -87,7 +87,7 @@ WGETOUT=$(wget -N "$HOST1$BASEDIR$SIGNATUREFILENAME" 2>&1) #and then see if wget completed successfully if [ $? -ne 0 ]; then echo "Error: couldn't fetch signature file. Have you specified the version number in the following format?" - echo "[$VERSIONPREFIX]-[$RCVERSIONSTRING[0-9]] (example: "$VERSIONPREFIX"0.10.4-"$RCVERSIONSTRING"1)" + echo "[$VERSIONPREFIX]-[$RCVERSIONSTRING[0-9]] (example: ${VERSIONPREFIX}0.10.4-${RCVERSIONSTRING}1)" echo "wget output:" echo "$WGETOUT"|sed 's/^/\t/g' exit 2 -- cgit v1.2.3