From b2fe1bc1e5bc47f7efef7e9a492d29917f7c9e15 Mon Sep 17 00:00:00 2001 From: ShahanaFarooqui Date: Wed, 13 Sep 2023 11:26:33 -0700 Subject: [PATCH] tools: Fixed release verify typo Removed `bin-` while copying Fedora sums from release captain's file. Sums are saved as `clightning-$VERSION-Fedora-28-amd64.tar.gz` not as `clightning-$VERSION-bin-Fedora-28-amd64.tar.gz` Changelog-None. --- tools/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-release.sh b/tools/build-release.sh index ed659955a4dd..93e4a41fcda0 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -253,7 +253,7 @@ if [ "$VERIFY_RELEASE" = "true" ]; then # it gives a direct hint which specific checksums don't match if so. sha256sum --check --ignore-missing "${sumfile}" # Creating SHA256SUMS, except Fedora (copy that from theirs) - grep 'bin-Fedora-28-amd64' "$sumfile" > SHA256SUMS + grep 'Fedora-28-amd64' "$sumfile" > SHA256SUMS sha256sum clightning-"$VERSION"* | grep -v 'bin-Fedora-28-amd64' >> SHA256SUMS # compare our and release captain's SHA256SUMS contents if cmp -s SHA256SUMS "$sumfile"; then