Migrate gpg wrapper from using gpg2 to just gpg, because GnuPG 2.1.23 removes the 'gpg2' alias

This commit is contained in:
Danielle McLean 2017-08-10 11:13:58 +10:00
parent 7f211abcf8
commit adf91732a8
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
arguments = --preserve-merges
[gpg]
program = gpg2-for-git-signing
program = gpg-for-git-signing
[rerere]
enabled = true

View file

@ -10,4 +10,4 @@ for arg; do
args+=($arg)
fi
done
exec gpg2 --no-tty "${(@)args}"
exec gpg --no-tty "${(@)args}"