pantry/projects/gnupg.org/gpg
Jacob Heider 60d3d1dfec fix(gnupg)
don't include a gpg.conf so our shim can make its own.
2023-11-17 14:43:36 -05:00

18 lines
280 B
Bash
Executable file

#!/bin/sh
d=$(dirname "$0")
etc="$d/../etc/gnupg"
export GNUPGHOME="${GNUPGHOME:-"$etc"}"
if [ ! -f "$etc/gpg.conf" ]; then
mkdir -p "$etc"
chmod 700 "$etc"
cat << EOF > "$etc"/gpg.conf
use-agent
pinentry-mode loopback
agent-program $d/gpg-agent
EOF
fi
exec "$d"/gpg-exec "$@"