Unverified Commit 0da33ca2 authored by Carlo Sala's avatar Carlo Sala Committed by GitHub

fix(cli): disable GPG signing in `omz pr test` to avoid key prompt (#10677)

parent aaaa5542
...@@ -573,7 +573,7 @@ function _omz::pr::test { ...@@ -573,7 +573,7 @@ function _omz::pr::test {
# Rebase pull request branch against the current master # Rebase pull request branch against the current master
_omz::log info "rebasing PR #$1..." _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 command git rebase --abort &>/dev/null
_omz::log warn "could not rebase PR #$1 on top of master." _omz::log warn "could not rebase PR #$1 on top of master."
_omz::log warn "you might not see the latest stable changes." _omz::log warn "you might not see the latest stable changes."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment