1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-27 18:55:25 +03:00

Fix travis tag check

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2016-05-30 23:12:26 +02:00
parent 8caaf317ae
commit 01a4002169
No known key found for this signature in database
GPG Key ID: D808B4C167352E59

View File

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