summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCarlo Sala <carlosalag@protonmail.com>2022-02-10 11:50:04 +0100
committerGitHub <noreply@github.com>2022-02-10 11:50:04 +0100
commit0da33ca22be19452e26ed44aef8e99972d0bf866 (patch)
tree93f3cd82405c715ca8201d7ab3fb7b157d7841aa /lib
parentaaaa55424ad7c440506024fac86927fc9916348f (diff)
downloadzsh-0da33ca22be19452e26ed44aef8e99972d0bf866.tar.gz
zsh-0da33ca22be19452e26ed44aef8e99972d0bf866.tar.bz2
zsh-0da33ca22be19452e26ed44aef8e99972d0bf866.zip
fix(cli): disable GPG signing in `omz pr test` to avoid key prompt (#10677)
Diffstat (limited to 'lib')
-rw-r--r--lib/cli.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cli.zsh b/lib/cli.zsh
index e7f997013..c2fba8556 100644
--- a/lib/cli.zsh
+++ b/lib/cli.zsh
@@ -573,7 +573,7 @@ function _omz::pr::test {
# Rebase pull request branch against the current master
_omz::log info "rebasing PR #$1..."
- command git rebase master ohmyzsh/pull-$1 || {
+ command git rebase --no-gpg-sign master ohmyzsh/pull-$1 || {
command git rebase --abort &>/dev/null
_omz::log warn "could not rebase PR #$1 on top of master."
_omz::log warn "you might not see the latest stable changes."