We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c907f4d commit 182bec4Copy full SHA for 182bec4
contrib/verifysfbinaries/verify.sh
@@ -23,9 +23,6 @@ BASEDIR="https://bitcoin.org/bin/"
23
VERSIONPREFIX="bitcoin-core-"
24
RCVERSIONSTRING="rc"
25
26
-#this URL is used if a version number is not specified as an argument to the script
27
-SIGNATUREFILE="$BASEDIR""$VERSIONPREFIX""0.10.4/""$RCSUBDIR""$SIGNATUREFILENAME"
28
-
29
if [ ! -d "$WORKINGDIR" ]; then
30
mkdir "$WORKINGDIR"
31
fi
@@ -53,7 +50,8 @@ if [ -n "$1" ]; then
53
50
54
51
SIGNATUREFILE="$BASEDIR$SIGNATUREFILENAME"
55
52
else
56
- BASEDIR="${SIGNATUREFILE%/*}/"
+ echo "Error: need to specify a version on the command line"
+ exit 2
57
58
59
#first we fetch the file containing the signature
0 commit comments