mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-01 13:32:17 +00:00
15 lines
374 B
Bash
15 lines
374 B
Bash
|
#!/bin/bash
|
||
|
if !(git checkout master && git push && git push github); then
|
||
|
echo "Error while pushing master"
|
||
|
exit 1
|
||
|
fi
|
||
|
if !(git push --tags && git push --tags github); then
|
||
|
echo "Error while pushing tags"
|
||
|
exit 1
|
||
|
fi
|
||
|
if !(git checkout stable && git merge master && git push github); then
|
||
|
echo "Error while pushing stable"
|
||
|
exit 1
|
||
|
fi
|
||
|
git checkout master
|