mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
26 lines
894 B
Diff
26 lines
894 B
Diff
From d548e548d8c4d03356cf576188715292091efe18 Mon Sep 17 00:00:00 2001
|
|
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
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)
|
|
|