From 94abe583e30d8d6a42f39fc299050315faf458f2 Mon Sep 17 00:00:00 2001 From: HubertJFarnsworth Date: Mon, 22 Apr 2019 15:31:22 -0400 Subject: [PATCH] Fixed gpgconf variable typo in install-gosu-binary.sh --- imagefiles/install-gosu-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagefiles/install-gosu-binary.sh b/imagefiles/install-gosu-binary.sh index 5fb51ba..fec9ddd 100755 --- a/imagefiles/install-gosu-binary.sh +++ b/imagefiles/install-gosu-binary.sh @@ -37,7 +37,7 @@ gpg --verify /usr/local/bin/gosu.asc # agent files in $GNUPGHOME. Only need to do this on newer distros # with gpgconf installed 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 fi