mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-06 03:18:19 +00:00
14 lines
243 B
Bash
14 lines
243 B
Bash
set -ex
|
|
|
|
branch=zen-"$1"
|
|
default_branch="central"
|
|
|
|
if [ $branch = "zen-stable" ]; then
|
|
$(dirname $0)/merge-to-branch.sh twilight
|
|
fi
|
|
|
|
git checkout "$branch"
|
|
git merge "$default_branch"
|
|
git push origin "$branch"
|
|
|
|
git checkout "$default_branch" |