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
if [ "$TRAVIS_TAG" <> "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then
if [ "$TRAVIS_TAG" != "" ] || [ "$TRAVIS_BRANCH" == "master" ]; then
exit 0;
fi
@ -22,4 +22,4 @@ if [ $? -ne 0 ]; then
echo "Falling back to diagram-js@develop";
npm install "diagram-js@bpmn-io/diagram-js#develop";
fi
fi