You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- if [ "$PCINSTALL" == true ]; then sh sbin/travis.sh install_package_control; fi
On the headers of the files, it is already defined to use #!/bin/bash, but if you directly launches it with sh travis.shsh will be used instead of bash.
I just tested adding #!/bin/bash to all shell scripts, but the script install_sublime_text.sh crashed on Mac OS.
Currently install_sublime_text.sh has this #! /usr/bin/env bash which does nothing because it has a space after the #!. My guess, someone else was seeing this crash on Mac OS and "disabled" shell bang putting that space.
I tested it putting directly #!/bin/sh which should be the default on Mac OS and not crash happened.
May be this is what is helping #159 (travis.sh and run_tests.py reported success when it a was failure) to exists?
UnitTesting/.travis.yml
Lines 33 to 35 in d94dcb0
On the headers of the files, it is already defined to use
#!/bin/bash
, but if you directly launches it withsh travis.sh
sh
will be used instead ofbash
.The text was updated successfully, but these errors were encountered: