Skip to content

Commit

Permalink
Even better signing (ie, regenerate SHA256SUMS to include the SHA256S…
Browse files Browse the repository at this point in the history
…UMS of the *.asc files)
  • Loading branch information
tianon committed Nov 19, 2014
1 parent 2ae0568 commit 467c920
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"

set -x
rm -f gosu*.asc SHA256SUMS.asc
for f in SHA256SUMS gosu*; do
for f in gosu*; do
gpg --output "$f.asc" --detach-sign "$f"
done
sha256sum gosu* > SHA256SUMS
gpg --output SHA256SUMS.asc --detach-sign SHA256SUMS
ls -lFh gosu* SHA256SUMS*

0 comments on commit 467c920

Please sign in to comment.