Edit comment about #!/bin/bash

This commit is contained in:
Greg Hendershott 2019-11-25 15:30:55 -05:00
parent 1dead206fb
commit 439d472ab0

View File

@ -1,7 +1,10 @@
#!/bin/bash #!/bin/bash
#
# IMPORTANT: Your .travis.yml must pipe this to bash (not to sh)! # In the Travis CI environment `#!/bin/bash` won't suffice (it's here
# In the Travis CI environment a #!/bin/bash shebang here won't help. # to make shellcheck happy and for convenience when using this script
# locally).
#
# Instead .travis.yml should pipe this script to bash (not to sh).
set -e set -e