argh why is this so hard

This commit is contained in:
Richard Harris
2019-02-03 09:38:45 -05:00
parent fb4a6eff95
commit 6dab2a5985
2 changed files with 22 additions and 13 deletions

View File

@@ -6,7 +6,12 @@ cd "$(dirname $0)"/..
echo "$SSH_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
./create-branches.sh
# branch names
DEFAULT=v3
ROLLUP=rollup-v3
WEBPACK=webpack-v3
# force push rollup-v3 and webpack branches
git push git@github.com:sveltejs/sapper-template.git rollup-v3 webpack-v3 -f
./create-branches.sh $DEFAULT $ROLLUP $WEBPACK
# force push rollup and webpack branches
git push git@github.com:sveltejs/sapper-template.git $ROLLUP $WEBPACK -f