X-Git-Url: https://jfr.im/git/irc/freenode/web-7.0.git/blobdiff_plain/660a5a53914a48e83030160ab84e6250f7ad6d18..81cae952d943334ac129616a3b604cb1a35a6857:/deploy.sh diff --git a/deploy.sh b/deploy.sh index 77724e286..e35bdcf52 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,7 +1,8 @@ #!/bin/sh if [ -z "$TRAVIS_BRANCH" ]; then exit; fi -if [ ! "$TRAVIS_BRANCH" = master ]; then exit; fi +if [ "$TRAVIS_BRANCH" != master ]; then exit; fi +if [ "$TRAVIS_PULL_REQUEST" != false ]; then exit; fi export SSH_KEYFILE="$(readlink -f .deploy-key)" export GIT_SSH="$(readlink -f ssh.sh)" @@ -11,7 +12,6 @@ git config user.name travis git config user.email travis@nowhere rm -rf * cp -r ../out/* . -cp -r ../static . git add -A git commit -m "travis: $TRAVIS_COMMIT" git push || exit 1