[contrib] verifybinaries: Adjust parsing to new rc path
This commit is contained in:
parent
2468292a03
commit
fab1f9272c
2 changed files with 5 additions and 4 deletions
|
@ -10,4 +10,5 @@ Usage:
|
|||
```sh
|
||||
./verify.sh bitcoin-core-0.11.2
|
||||
./verify.sh bitcoin-core-0.12.0
|
||||
./verify.sh bitcoin-core-0.13.0-rc3
|
||||
```
|
||||
|
|
|
@ -14,11 +14,11 @@ function clean_up {
|
|||
done
|
||||
}
|
||||
|
||||
WORKINGDIR="/tmp/bitcoin"
|
||||
WORKINGDIR="/tmp/bitcoin_verify_binaries"
|
||||
TMPFILE="hashes.tmp"
|
||||
|
||||
SIGNATUREFILENAME="SHA256SUMS.asc"
|
||||
RCSUBDIR="test/"
|
||||
RCSUBDIR="test"
|
||||
BASEDIR="https://bitcoin.org/bin/"
|
||||
VERSIONPREFIX="bitcoin-core-"
|
||||
RCVERSIONSTRING="rc"
|
||||
|
@ -43,7 +43,7 @@ if [ -n "$1" ]; then
|
|||
# and simultaneously add RCSUBDIR to BASEDIR, where we will look for SIGNATUREFILENAME
|
||||
if [[ $VERSION == *"$RCVERSIONSTRING"* ]]; then
|
||||
BASEDIR="$BASEDIR${VERSION/%-$RCVERSIONSTRING*}/"
|
||||
BASEDIR="$BASEDIR$RCSUBDIR"
|
||||
BASEDIR="$BASEDIR$RCSUBDIR.$RCVERSIONSTRING${VERSION: -1}/"
|
||||
else
|
||||
BASEDIR="$BASEDIR$VERSION/"
|
||||
fi
|
||||
|
@ -93,7 +93,7 @@ fi
|
|||
FILES=$(awk '{print $2}' "$TMPFILE")
|
||||
|
||||
#and download these one by one
|
||||
for file in in $FILES
|
||||
for file in $FILES
|
||||
do
|
||||
wget --quiet -N "$BASEDIR$file"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue