App-DocKnot
view release on metacpan or search on metacpan
t/data/dist/fake-gpg view on Meta::CPAN
#!/bin/sh
#
# Fake gpg program for testing dist signing.
echo '#' "$@"
if [ "$1" != '--detach-sign' ]; then exit 1; fi
if [ "$2" != '--armor' ]; then exit 1; fi
if [ "$3" != '-u' ]; then exit 1; fi
if [ "$4" != 'some-pgp-key' ]; then exit 1; fi
echo 'some signature' >"$5".asc
exit 0
( run in 0.881 second using v1.01-cache-2.11-cpan-df04353d9ac )