diff options
author | 2018-04-28 14:48:28 +0200 | |
---|---|---|
committer | 2018-04-28 14:48:28 +0200 | |
commit | d958ae163abff5c618cfddc9bb567fd0beaa3c29 (patch) | |
tree | e5013477486b6958515c194cef213ff96fb8882c /scripts/deploy.sh | |
parent | adds dockerfile that uses pipenv (#60) (diff) |
else condition in deploy script to say skipping deploy
Diffstat (limited to 'scripts/deploy.sh')
-rw-r--r-- | scripts/deploy.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 98b9a9462..0da886fe2 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -13,4 +13,6 @@ if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then echo "Deploying container" pipenv run python scripts/deploy.py +else + echo "Skipping deploy" fi |