diff --git a/.travis.yml b/.travis.yml index 3e91bd945..74fcb4bcc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ install: - sudo curl https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION} -o /usr/bin/docker - sudo chmod +x /usr/bin/docker - sudo service docker start +- sleep 5 - docker version - pip install --user mkdocs - pip install --user pymdown-extensions diff --git a/script/deploy.sh b/script/deploy.sh index 32415679a..bf2d1bb7f 100755 --- a/script/deploy.sh +++ b/script/deploy.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -if [ -z "$TRAVIS_TAG" ] && [ "$DOCKER_VERSION" = "1.10.1" ]; then +if [ -n "$TRAVIS_TAG" ] && [ "$DOCKER_VERSION" = "1.10.1" ]; then echo "Deploying..." else echo "Skipping deploy"