mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
15 lines
288 B
Bash
Executable file
15 lines
288 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -n "$show_cmds" ] && echo "../g10/gpg --homedir . $*"
|
|
|
|
if ../g10/gpg --homedir . $* 2>err.tmp.$$ ; then
|
|
:
|
|
else
|
|
echo "(../g10/gpg --homedir . $*) failed" >&2
|
|
cat err.tmp.$$ >&2
|
|
rm err.tmp.$$
|
|
exit 1
|
|
fi
|
|
fgrep -v -f run-gpg.patterns err.tmp.$$
|
|
rm err.tmp.$$
|
|
|