fix(project): correct wiredeps not equals comparison

This commit is contained in:
Nico Rehwaldt 2019-11-20 10:13:59 +01:00 committed by fake-join[bot]
parent e4711a5810
commit 37ac1abf3f
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ FEATURE_BRANCH=
# https://docs.travis-ci.com/user/environment-variables # https://docs.travis-ci.com/user/environment-variables
if [ "$TRAVIS_TAG" <> "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then if [ "$TRAVIS_TAG" != "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then
exit 0; exit 0;
fi fi