Skip to content

Commit

Permalink
fix SHA1 issue when signing the realease
Browse files Browse the repository at this point in the history
  • Loading branch information
netblue30 committed Jan 14, 2016
1 parent 7393f2f commit 64505c7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,5 @@ cppcheck: clean

scan-build: clean
scan-build make
asc:; ./mkasc.sh $(VERSION)

10 changes: 10 additions & 0 deletions mkasc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

echo "Calculationg SHA256 for all files in /transfer - firejail version $1"

cd /transfer
sha256sum * > firejail-$1-unsigned
gpg --clearsign --digest-algo SHA256 < firejail-$1-unsigned > firejail-$1.asc
gpg --verify firejail-$1.asc
rm firejail-$1-unsigned

0 comments on commit 64505c7

Please sign in to comment.