Hello I’ve run into an issue using conditionals. Using echo hi
is an example.
Adding this to my .travis.yml stops the build from triggering on GitHub:
install:
- [[ $TRAVIS_PYTHON_VERSION == "3.4" ]] && echo hi
Converting it to this actually triggers the build:
install:
- if [[ $TRAVIS_PYTHON_VERSION == "3.4" ]]; then echo hi; fi
[ $TRAVIS_PYTHON_VERSION == "3.4" ]] && echo hi
works perfectly fine outside of Travis, is there an issue with what I’m doing or is this a bug? Thanks!