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-09-14 12:33:57 +02:00
|
|
|
if ../g10/gpg --homedir . $* 2>err.tmp.$$ ; then
|
|
|
|
:
|
|
|
|
else
|
1998-04-08 21:42:07 +02:00
|
|
|
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.$$
|
|
|
|
|