aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2015-11-16 12:54:35 +0100
committerMarcoFalke <[email protected]>2015-11-16 12:59:42 +0100
commita6d5a6502a3dce23679a9be9e4884a4f77110cd1 (patch)
tree20f90cdb99b06398f84da68f9135a448d3fafb55
parent[contrib] Update versionprefix to "bitcoin-core" in verify.sh (diff)
downloaddiscoin-a6d5a6502a3dce23679a9be9e4884a4f77110cd1.tar.xz
discoin-a6d5a6502a3dce23679a9be9e4884a4f77110cd1.zip
[trivial] contrib: Fix `echo`s in verify.sh
-rwxr-xr-xcontrib/verifysfbinaries/verify.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/verifysfbinaries/verify.sh b/contrib/verifysfbinaries/verify.sh
index ac411087a..847c50755 100755
--- a/contrib/verifysfbinaries/verify.sh
+++ b/contrib/verifysfbinaries/verify.sh
@@ -82,7 +82,7 @@ if [ $RET -ne 0 ]; then
echo "Bad signature."
elif [ $RET -eq 2 ]; then
#or if a gpg error has occurred
- echo "gpg error. Do you have Gavin's code signing key installed?"
+ echo "gpg error. Do you have the Bitcoin Core binary release signing key installed?"
fi
echo "gpg output:"
@@ -116,4 +116,6 @@ fi
#everything matches! clean up the mess
clean_up $FILES $SIGNATUREFILENAME $TMPFILE
+echo -e "Verified hashes of \n$FILES"
+
exit 0