Fix deploy script, removes Docker version check

This commit is contained in:
Emile Vauge 2017-05-16 17:24:08 +02:00
parent c963cee3c8
commit 88ea0a037b
No known key found for this signature in database
GPG key ID: D808B4C167352E59

View file

@ -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"