From fb9142d5f0df59f9a0e381e6b79829dd6b40c680 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Tue, 26 Sep 2017 16:23:50 +0200 Subject: testing/git-secret: don't hide output, fix issue on gpg 2.2 --- .../fix-passphrase-input-for-gpg2.2.patch | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/git-secret/fix-passphrase-input-for-gpg2.2.patch (limited to 'testing/git-secret/fix-passphrase-input-for-gpg2.2.patch') diff --git a/testing/git-secret/fix-passphrase-input-for-gpg2.2.patch b/testing/git-secret/fix-passphrase-input-for-gpg2.2.patch new file mode 100644 index 0000000000..d106f19052 --- /dev/null +++ b/testing/git-secret/fix-passphrase-input-for-gpg2.2.patch @@ -0,0 +1,26 @@ +From d548e548d8c4d03356cf576188715292091efe18 Mon Sep 17 00:00:00 2001 +From: Jakub Jirutka +Date: Tue, 26 Sep 2017 16:09:39 +0200 +Subject: [PATCH 1/2] Fix providing passphrase to GPG to work with GPG 2.2+ + +--- + src/_utils/_git_secret_tools.sh | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/_utils/_git_secret_tools.sh b/src/_utils/_git_secret_tools.sh +index 882c0b2..9e4282b 100644 +--- a/src/_utils/_git_secret_tools.sh ++++ b/src/_utils/_git_secret_tools.sh +@@ -446,7 +446,8 @@ function _decrypt { + fi + + if [[ ! -z "$passphrase" ]]; then +- echo "$passphrase" | $base --batch --yes --no-tty --passphrase-fd 0 \ ++ echo "$passphrase" | $base --batch --yes --no-tty \ ++ --passphrase-fd 0 --pinentry-mode loopback \ + "$encrypted_filename" > /dev/null 2>&1 + else + $base --quiet "$encrypted_filename" +-- +2.10.1 (Apple Git-78) + -- cgit v1.2.3