aboutsummaryrefslogtreecommitdiffstats
path: root/testing/git-secret/dont-hide-gpg-output.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-07-08 06:48:00 -0300
committerLeo <thinkabit.ukim@gmail.com>2019-07-08 08:03:40 -0300
commita45361a1e7405b882f64857c1fde61f7daba8589 (patch)
tree89f6d03c7cca538fe38e2e5dd8c8e16e520a0546 /testing/git-secret/dont-hide-gpg-output.patch
parentfd2996bace7d85473984e362f044ca2ce3c99faa (diff)
downloadaports-a45361a1e7405b882f64857c1fde61f7daba8589.tar.bz2
aports-a45361a1e7405b882f64857c1fde61f7daba8589.tar.xz
testing/git-secret: upgrade to 0.2.6
Diffstat (limited to 'testing/git-secret/dont-hide-gpg-output.patch')
-rw-r--r--testing/git-secret/dont-hide-gpg-output.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/testing/git-secret/dont-hide-gpg-output.patch b/testing/git-secret/dont-hide-gpg-output.patch
deleted file mode 100644
index 234834fe6f..0000000000
--- a/testing/git-secret/dont-hide-gpg-output.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Goddamn, don't make troubleshooting impossible!
-
---- a/src/commands/git_secret_tell.sh
-+++ b/src/commands/git_secret_tell.sh
-@@ -95,7 +95,7 @@ function tell {
- # Importing public key to the local keychain:
- local secrets_dir_keys
- secrets_dir_keys=$(_get_secrets_dir_keys)
-- $SECRETS_GPG_COMMAND --homedir "$secrets_dir_keys" --no-permission-warning --import "$keyfile" > /dev/null 2>&1
-+ $SECRETS_GPG_COMMAND --homedir "$secrets_dir_keys" --no-permission-warning --import "$keyfile"
- exit_code=$?
- if [[ "$exit_code" -ne 0 ]]; then
- _abort "problem importing public key for '$email' with gpg: exit code $exit_code"