]> jfr.im git - irc/freenode/web-7.0.git/blobdiff - deploy.sh
Merge pull request #56 from emersonveenstra/weird-nbsp
[irc/freenode/web-7.0.git] / deploy.sh
index e73b0e43120b6711b44126bfe2841b6bb5eb2f87..e35bdcf52abf6a75aa3a17a4cebddda13d1a415d 100755 (executable)
--- a/deploy.sh
+++ b/deploy.sh
@@ -1,17 +1,17 @@
 #!/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)"
-git clone -b gh-pages git@github.com:freenode/web-7.0.git .deploy
-cd .deploy
+git clone -b gh-pages git@github.com:freenode/web-7.0.git .deploy || exit 1
+cd .deploy || exit 1
 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
+git push || exit 1