From 88ea0a037b1ba6fa7ac8518c48de34102f803d66 Mon Sep 17 00:00:00 2001 From: Emile Vauge Date: Tue, 16 May 2017 17:24:08 +0200 Subject: [PATCH] Fix deploy script, removes Docker version check --- script/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/deploy.sh b/script/deploy.sh index c04fcfa43..0f445f28f 100755 --- a/script/deploy.sh +++ b/script/deploy.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -if [ -n "$TRAVIS_TAG" ] && [ "$DOCKER_VERSION" = "1.10.3" ]; then +if [ -n "$TRAVIS_TAG" ]; then echo "Deploying..." else echo "Skipping deploy"