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
a18fc56822
commit
8c491bfb7a
@ -17,6 +17,10 @@
|
|||||||
#
|
#
|
||||||
# create md5 checksums and gpg signatures
|
# create md5 checksums and gpg signatures
|
||||||
|
|
||||||
|
echo "If you use gpg2 you need to set GPG_BIN accordingly"
|
||||||
|
|
||||||
|
GPG_BIN=gpg
|
||||||
|
|
||||||
stty -echo
|
stty -echo
|
||||||
echo "enter your GPG passphrase"
|
echo "enter your GPG passphrase"
|
||||||
read passphrase
|
read passphrase
|
||||||
@ -32,8 +36,8 @@ LACKING_SHA1SUM=$?
|
|||||||
for i in *; do
|
for i in *; do
|
||||||
echo ""
|
echo ""
|
||||||
echo Signing $i
|
echo Signing $i
|
||||||
echo $passphrase | gpg --passphrase-fd 0 --output $i.asc --detach-sig --armor $i
|
echo $passphrase | $GPG_BIN --passphrase-fd 0 --output $i.asc --detach-sig --armor $i
|
||||||
gpg --verify $i.asc $i
|
$GPG_BIN --verify $i.asc $i
|
||||||
echo Hashing $i
|
echo Hashing $i
|
||||||
|
|
||||||
if [ "$LACKING_MD5SUM" = "1" ]; then
|
if [ "$LACKING_MD5SUM" = "1" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user