temp: modify get-sha256 for hotfix commit

This commit is contained in:
nixbitcoin 2020-12-14 16:48:43 +00:00
parent 7928495e45
commit c9657305e7
No known key found for this signature in database
GPG Key ID: DD11F9AD5308B3BA
1 changed files with 5 additions and 3 deletions

View File

@ -9,17 +9,19 @@ cd $TMPDIR
echo "Fetching latest release"
git clone https://github.com/joinmarket-org/joinmarket-clientserver 2> /dev/null
cd joinmarket-clientserver
latest=$(git describe --tags `git rev-list --tags --max-count=1`)
latest=bcfa7eb4ea3ca51b7ecae9aebe65c634a4ab8b0e
echo "Latest release is ${latest}"
# GPG verification
export GNUPGHOME=$TMPDIR
echo "Fetching Adam Gibson's key"
gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys 2B6FC204D9BF332D062B461A141001A1AF77F20B 2> /dev/null
echo "Fetching Kristaps Kaupe's key"
gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys BF60DF964F88DD88174089A2D47B1B4232B55437 2> /dev/null
echo "Verifying latest release"
git verify-tag ${latest}
git verify-commit ${latest}
echo "tag: ${latest}"
echo "commit: ${latest}"
# The prefix option is necessary because GitHub prefixes the archive contents in this format
echo "sha256: $(nix-hash --type sha256 --flat --base32 \
<(git archive --format tar.gz --prefix=joinmarket-clientserver-"${latest//v}"/ ${latest}))"