diff options
author | Werner Koch <wk@gnupg.org> | 1998-08-08 21:27:00 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-08-08 21:27:00 +0200 |
commit | 6ccf4e0f80547ecaf2df19443093d9a53e7dc57e (patch) | |
tree | a5ea0d7ce2a6eb8a7f74ccfaf3921b08e7ec4997 /checks | |
parent | new (diff) | |
download | gnupg2-6ccf4e0f80547ecaf2df19443093d9a53e7dc57e.tar.xz gnupg2-6ccf4e0f80547ecaf2df19443093d9a53e7dc57e.zip |
ready for a new release
Diffstat (limited to 'checks')
-rwxr-xr-x | checks/run-gpg | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/checks/run-gpg b/checks/run-gpg index 9a3ffee8f..936ebf76d 100755 --- a/checks/run-gpg +++ b/checks/run-gpg @@ -1,12 +1,18 @@ #!/bin/sh +[ -n "$show_cmds" ] && echo "../g10/gpg --homedir . $*" + if ! ../g10/gpg --homedir . $* 2>err.tmp.$$ ; then echo "(../g10/gpg --homedir . $*) failed" >&2 cat err.tmp.$$ >&2 rm err.tmp.$$ exit 1 fi -grep -v 'gpg: Good signature from' err.tmp.$$ \ - | grep -v 'gpg: Signature made ' || true +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 rm err.tmp.$$ |