1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-07-02 02:48:57 +02:00
gnupg/checks/run-gpg

19 lines
429 B
Plaintext
Raw Normal View History

1998-04-08 21:42:07 +02:00
#!/bin/sh
1998-08-08 21:27:00 +02:00
[ -n "$show_cmds" ] && echo "../g10/gpg --homedir . $*"
1998-04-08 21:42:07 +02:00
if ! ../g10/gpg --homedir . $* 2>err.tmp.$$ ; then
echo "(../g10/gpg --homedir . $*) failed" >&2
cat err.tmp.$$ >&2
rm err.tmp.$$
exit 1
fi
1998-08-08 21:27:00 +02:00
fgrep -v -f - err.tmp.$$ <<EOF
gpg: Good signature from
gpg: Signature made
gpg: note: cipher algorithm 3 not found in preferences
gpg: note: cipher algorithm 4 not found in preferences
EOF
1998-04-08 21:42:07 +02:00
rm err.tmp.$$