Check for TRAVIS_PULL_REQUEST

This commit is contained in:
Armin Ronacher 2015-12-25 13:37:17 +01:00
parent 283fbcd819
commit 95fe817a22
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ install:
- "pip install git+https://github.com/lektor/lektor#egg=Lektor"
script:
- "lektor build"
- "if [ ! -z \"$LEKTOR_DEPLOY_KEY\" ] && [ \"$TRAVIS_BRANCH\" == \"master\" ]; then lektor deploy production; fi"
- "if [ ! -z \"$LEKTOR_DEPLOY_KEY\" ] && [ \"$TRAVIS_PULL_REQUEST\" == \"false\" ] && [ \"$TRAVIS_BRANCH\" == \"master\" ]; then lektor deploy production; fi"
cache:
directories:
- $HOME/.cache/pip