mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00
Refactor unify-twilight-and-stable.sh script to merge current branch to both stable and twilight branches
This commit is contained in:
14
scripts/unify-twilight-and-stable.sh
Normal file
14
scripts/unify-twilight-and-stable.sh
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
# confirm before doing anything
|
||||
echo "This script will merge the current branch to both the stable and twilight branches."
|
||||
echo "Are you sure you want to continue? (y/n)"
|
||||
read -r response
|
||||
if [ "$response" != "y" ]; then
|
||||
echo "Exiting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -ex
|
||||
|
||||
$(dirname $0)/merge-to-branch.sh twilight
|
||||
$(dirname $0)/merge-to-branch.sh stable
|
Reference in New Issue
Block a user