mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 00:10:00 +02:00
14 lines
No EOL
231 B
Bash
14 lines
No EOL
231 B
Bash
set -ex
|
|
|
|
branch=zen-"$1"
|
|
default_branch="central"
|
|
|
|
if [ $branch = "zen-stable" ]; then
|
|
default_branch="zen-twilight"
|
|
fi
|
|
|
|
git checkout "$branch"
|
|
git merge "$default_branch"
|
|
git push origin "$branch"
|
|
|
|
git checkout "$default_branch" |