Skip to content

Commit 80f5f28

Browse files
Fix incorrect quoting of quotes (the previous quotes had no effect beyond unquoting)
1 parent 564a172 commit 80f5f28

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contrib/macdeploy/detached-sig-create.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ grep CodeResources < "${TEMPLIST}" | while read i; do
4040
RESOURCE="${TEMPDIR}/${OUTROOT}/${TARGETFILE}"
4141
DIRNAME="`dirname "${RESOURCE}"`"
4242
mkdir -p "${DIRNAME}"
43-
echo "Adding resource for: "${TARGETFILE}""
43+
echo "Adding resource for: \"${TARGETFILE}\""
4444
cp "${i}" "${RESOURCE}"
4545
done
4646

contrib/verify-commits/verify-commits.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ PREV_COMMIT=""
3636

3737
while true; do
3838
if [ "$CURRENT_COMMIT" = $VERIFIED_ROOT ]; then
39-
echo "There is a valid path from "$CURRENT_COMMIT" to $VERIFIED_ROOT where all commits are signed!"
39+
echo "There is a valid path from \"$CURRENT_COMMIT\" to $VERIFIED_ROOT where all commits are signed!"
4040
exit 0
4141
fi
4242

contrib/verifybinaries/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ WGETOUT=$(wget -N "$HOST1$BASEDIR$SIGNATUREFILENAME" 2>&1)
8787
#and then see if wget completed successfully
8888
if [ $? -ne 0 ]; then
8989
echo "Error: couldn't fetch signature file. Have you specified the version number in the following format?"
90-
echo "[$VERSIONPREFIX]<version>-[$RCVERSIONSTRING[0-9]] (example: "$VERSIONPREFIX"0.10.4-"$RCVERSIONSTRING"1)"
90+
echo "[$VERSIONPREFIX]<version>-[$RCVERSIONSTRING[0-9]] (example: ${VERSIONPREFIX}0.10.4-${RCVERSIONSTRING}1)"
9191
echo "wget output:"
9292
echo "$WGETOUT"|sed 's/^/\t/g'
9393
exit 2

0 commit comments

Comments
 (0)