ソースを参照
Remove branch logic from deploy script
the branch logic lives in main.sh, so no need to check again
pull/576/head
Dave Machado
6年前
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 948D4778D01A7B3F
-
build/deploy.sh
|
|
@@ -2,12 +2,6 @@ |
|
|
|
|
|
|
|
set -o errexit -o nounset |
|
|
|
|
|
|
|
if [ "$TRAVIS_BRANCH" != "master" ] |
|
|
|
then |
|
|
|
echo "This commit was made against $TRAVIS_BRANCH and not master! No deploy!" |
|
|
|
exit 0 |
|
|
|
fi |
|
|
|
|
|
|
|
rev=$(git rev-parse --short HEAD) |
|
|
|
|
|
|
|
mkdir deploy |
|
|
|