Skip to content

Commit

Permalink
tools: Fixed release verify typo
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ShahanaFarooqui authored and rustyrussell committed Oct 2, 2023
1 parent 72f914a commit b2fe1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b2fe1bc

Please sign in to comment.