Skip to content

Commit

Permalink
fix(plugins/git): fix gpg verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Mar 1, 2024
1 parent c7231f4 commit 1f94fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ prepare() {
log_verbose "Git username [$GIT_USERNAME] and Git e-mail [$GIT_EMAIL] set"
fi
if [[ -n "${GPG_KEY-}" ]]; then
echo "$GPG_KEY" | base64 --decode | gpg --batch --import
echo "$GPG_KEY" | base64 --decode | gpg --quiet --batch --import
fi
if [[ -n "${GPG_KEY_ID-}" ]]; then
git config --local commit.gpgsign true
Expand Down

0 comments on commit 1f94fb9

Please sign in to comment.