fix(project): correct wiredeps not equals comparison
This commit is contained in:
parent
e4711a5810
commit
37ac1abf3f
|
@ -4,7 +4,7 @@ FEATURE_BRANCH=
|
|||
|
||||
# https://docs.travis-ci.com/user/environment-variables
|
||||
|
||||
if [ "$TRAVIS_TAG" <> "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then
|
||||
if [ "$TRAVIS_TAG" != "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then
|
||||
exit 0;
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue