diff options
Diffstat (limited to 'checks/sigs.test')
-rwxr-xr-x | checks/sigs.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/sigs.test b/checks/sigs.test index bc49c4c20..15c464f1e 100755 --- a/checks/sigs.test +++ b/checks/sigs.test @@ -4,8 +4,8 @@ #info Checking signatures for i in $plain_files $data_files; do - echo "$usrpass1" | run_gpg --passphrase-fd 0 -s -o x --yes $i - run_gpg -o y --yes x + echo "$usrpass1" | ./run-gpg --passphrase-fd 0 -s -o x --yes $i + ./run-gpg -o y --yes x cmp $i y || error "$i: mismatch" done |