diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-01-05 03:17:46 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2008-01-05 03:17:46 +0000 |
commit | 0e34d0db04eabb4083623bb12bd82a1de12b8821 (patch) | |
tree | 76feb919f23561f99cd41a215178e8069cdab927 /net/mail | |
parent | 2c08c68598e681ae3acc07ddbe7230afd3356bb5 (diff) | |
download | slackbuilds-0e34d0db04eabb4083623bb12bd82a1de12b8821.tar.gz slackbuilds-0e34d0db04eabb4083623bb12bd82a1de12b8821.tar.bz2 |
MHonArc: signature checking fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1586 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'net/mail')
-rwxr-xr-x | net/mail/mhonarc/MHonArc.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mail/mhonarc/MHonArc.build b/net/mail/mhonarc/MHonArc.build index d224b107..bc9f4173 100755 --- a/net/mail/mhonarc/MHonArc.build +++ b/net/mail/mhonarc/MHonArc.build @@ -93,7 +93,7 @@ if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then wget "$URL.sig" -O "$SRC_DIR/$SRC.sig" || exit $ERROR_WGET fi -gpg --verify $SRC_DIR/$SRC.asc $SRC_DIR/$SRC || exit $ERROR_GPG +gpg --verify $SRC_DIR/$SRC.sig $SRC_DIR/$SRC || exit $ERROR_GPG TMP="$TMP/$PACKAGE" |