Skip to content
Snippets Groups Projects
Unverified Commit b2614ddc authored by Mike McQuaid's avatar Mike McQuaid
Browse files

update: make git rebase be quiet.

`--quiet` doesn't seem to be working as expected.
parent 11c5c3ea
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,13 @@ EOS
if [[ -z "$HOMEBREW_MERGE" ]]
then
git rebase "${QUIET_ARGS[@]}" "$REMOTE_REF"
# Work around bug where git rebase --quiet is not quiet
if [[ -z "$HOMEBREW_VERBOSE" ]]
then
git rebase "$REMOTE_REF" >/dev/null
else
git rebase "${QUIET_ARGS[@]}" "$REMOTE_REF"
fi
else
git merge --no-edit --ff "${QUIET_ARGS[@]}" "$REMOTE_REF" \
--strategy=recursive \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment