mirror of https://github.com/apache/poi.git
Multisign update to allow gpg2 usage
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1718483 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7682cddd67
commit
c92b3956e9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue