Fixed gpgconf variable typo in install-gosu-binary.sh

This commit is contained in:
HubertJFarnsworth 2019-04-22 15:31:22 -04:00 committed by GitHub
parent c1acefed25
commit 94abe583e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ gpg --verify /usr/local/bin/gosu.asc
# agent files in $GNUPGHOME. Only need to do this on newer distros # agent files in $GNUPGHOME. Only need to do this on newer distros
# with gpgconf installed # with gpgconf installed
GPGCONF_BIN="$(command -v gpgconf)" || true GPGCONF_BIN="$(command -v gpgconf)" || true
if [ -n "$GPGCONF" ] && [ -x $GPGCONF_BIN ]; then if [ -n "$GPGCONF_BIN" ] && [ -x $GPGCONF_BIN ]; then
gpgconf --kill gpg-agent gpgconf --kill gpg-agent
fi fi