From c92b3956e908680672327692facceba1803708f1 Mon Sep 17 00:00:00 2001 From: David North Date: Mon, 7 Dec 2015 22:21:05 +0000 Subject: [PATCH] Multisign update to allow gpg2 usage git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1718483 13f79535-47bb-0310-9956-ffa450edef68 --- maven/multisign.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/maven/multisign.sh b/maven/multisign.sh index 3156d63c3c..1ba8c91f46 100755 --- a/maven/multisign.sh +++ b/maven/multisign.sh @@ -17,6 +17,10 @@ # # create md5 checksums and gpg signatures +echo "If you use gpg2 you need to set GPG_BIN accordingly" + +GPG_BIN=gpg + stty -echo echo "enter your GPG passphrase" read passphrase @@ -32,8 +36,8 @@ LACKING_SHA1SUM=$? for i in *; do echo "" echo Signing $i - echo $passphrase | gpg --passphrase-fd 0 --output $i.asc --detach-sig --armor $i - gpg --verify $i.asc $i + echo $passphrase | $GPG_BIN --passphrase-fd 0 --output $i.asc --detach-sig --armor $i + $GPG_BIN --verify $i.asc $i echo Hashing $i if [ "$LACKING_MD5SUM" = "1" ]; then -- 2.39.5