Adds script to sign artifacts.
Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/18823c97 Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/18823c97 Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/18823c97 Branch: refs/heads/fulltextsearch Commit: 18823c9715e4de99d37fc67f72743f4699746a06 Parents: 9433219 Author: Ali Lown <[email protected]> Authored: Fri Jul 18 09:26:46 2014 +0300 Committer: Yuri Zelikov <[email protected]> Committed: Fri Jul 18 09:26:46 2014 +0300 ---------------------------------------------------------------------- artifact-sign.sh | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/18823c97/artifact-sign.sh ---------------------------------------------------------------------- diff --git a/artifact-sign.sh b/artifact-sign.sh new file mode 100755 index 0000000..2bb1b34 --- /dev/null +++ b/artifact-sign.sh @@ -0,0 +1,8 @@ +#!/bin/zsh +#Assumes it is being run in the base directory. + +PRE="dist/apache-wave-" +for f in $PRE*; do +gpg --armor --output $f.asc --detach-sig $f +gpg --print-md SHA512 $f > $f.sha +done \ No newline at end of file
