Fix function exits to be returns.

This commit is contained in:
2025-12-01 09:05:20 -07:00
parent f7869fd453
commit 58525e2a5c

View File

@@ -957,7 +957,7 @@
if [[ "$rcvr" == "main" ]]; then
echo "*** ERROR: Are you nuts, fool!? Not main! Do it manually! ***"
exit 1
return 1
fi
if [[ -z "$base" ]]; then
@@ -967,7 +967,7 @@
base="dev"
else
echo "* Unsure which branch to use for '$rcvr'. Please specify."
exit 1
return 1
fi
echo "* Base was not specified, using '$base' for '$rcvr'."
else