Sha256: b65b6cbd3b467918e4d3d32ccac2097d9e2148448f238bc0d5b7d51b95de8a41
Contents?: true
Size: 380 Bytes
Versions: 20
Compression:
Stored size: 380 Bytes
Contents
#!/bin/bash # A wrapper around gpg that makes gpg non-interactive, and makes it # read a passphrase from the passphrase configuration file. To use # this wrapper, prepend the containing directory to PATH. set -e if [[ "$1" == "--version" ]]; then exec /usr/bin/gpg2.real --version else exec /usr/bin/gpg2.real --batch --passphrase-fd 3 "$@" 3<"/params/signing_passphrase" fi
Version data entries
20 entries across 20 versions & 1 rubygems