From 4920f7e65d7ee6623fcf1401e3da09585528352e Mon Sep 17 00:00:00 2001 From: Nick Dimiduk Date: Wed, 31 Aug 2022 17:15:23 +0200 Subject: [PATCH] fix readme and remove `-v` from GPG_ARGS --- dev-support/create-release/README.txt | 6 +++--- dev-support/create-release/release-util.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-support/create-release/README.txt b/dev-support/create-release/README.txt index 50c986548815..f679a47cfb33 100644 --- a/dev-support/create-release/README.txt +++ b/dev-support/create-release/README.txt @@ -105,9 +105,9 @@ $ scp ~/gpg.example.apache.pub example.gce.host: # gpg-agent's extra socket (this will restrict what commands the remote node is allowed to have # your agent handle. Note that the gpg guide above can help you set this up in your ssh config # rather than typing it in ssh like this every time. -# Note that as of maven-gpg-plugin, with gnupg >= 2.1, the plugin uses `--pinentry-mode error`, -# which is apparently not supported over the `extra` socket. These instructions may require -# tweaking. +# Note that as of maven-gpg-plugin 3.0.1, with gnupg >= 2.1, the plugin uses +# `--pinentry-mode error`, which is apparently not supported over the `extra` socket. These +# instructions may require tweaking. $ ssh -i ~/.ssh/my_id \ -R "/run/user/1000/gnupg/S.gpg-agent:$(gpgconf --list-dir agent-extra-socket)" \ -R "/run/user/1000/gnupg/S.gpg-agent.extra:$(gpgconf --list-dir agent-extra-socket)" \ diff --git a/dev-support/create-release/release-util.sh b/dev-support/create-release/release-util.sh index b01509b86311..a2851851b18e 100755 --- a/dev-support/create-release/release-util.sh +++ b/dev-support/create-release/release-util.sh @@ -30,7 +30,7 @@ DRY_RUN=${DRY_RUN:-1} #default to dry run DEBUG=${DEBUG:-0} GPG=${GPG:-gpg} -GPG_ARGS=(-v --no-autostart --batch --pinentry-mode error) +GPG_ARGS=(--no-autostart --batch --pinentry-mode error) if [ -n "${GPG_KEY}" ]; then GPG_ARGS=("${GPG_ARGS[@]}" --local-user "${GPG_KEY}") fi