Refactor merge-to-branch script to prepend "zen-" to the branch name if no branch is specified

This commit is contained in:
mr. M
2024-10-11 19:11:57 +02:00
parent c18b3db621
commit 49f7a457cd

View File

@@ -1,6 +1,6 @@
set -ex
branch="$1"
branch=zen-"$1"
default_branch="central"
git checkout "$branch"