SCRIPTS: git-show-backports: hide the common ancestor warning in quiet mode

It's annoying to always see that warning in quiet mode when backporting
upstream to topic branches, let's hide it.
This commit is contained in:
Willy Tarreau 2026-03-09 15:17:52 +01:00
parent 9b3345237a
commit 459835d535

View File

@ -255,7 +255,7 @@ if [ -z "$BASE" -a -n "$MISSING" ]; then
fi
if [ -z "$BASE" ]; then
err "Warning! No base specified, looking for common ancestor."
[ "$QUIET" != "" ] || err "Warning! No base specified, looking for common ancestor."
BASE=$(git merge-base --all "$REF" "${BRANCHES[@]}")
if [ -z "$BASE" ]; then
die "Couldn't find a common ancestor between these branches"