mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. $srcdir/defs.inc || exit 3
|
||
|
|
||
|
#info Checking detached signatures
|
||
|
for i in $plain_files $data_files ; do
|
||
|
echo "$usrpass1" | $GPG --passphrase-fd 0 -sb -o x --yes $i
|
||
|
$GPG -o /dev/null --yes x <$i || error "$i: bad signature"
|
||
|
done
|
||
|
|