Pipe to bash not sh

Script uses some "advanced" bash capabilities.
This commit is contained in:
Greg Hendershott 2014-02-27 09:35:52 -05:00
parent d29ac874cc
commit aff762e0f0
2 changed files with 5 additions and 2 deletions

View File

@ -19,8 +19,8 @@ before_install:
# Temporarily use raw.github.com to test this. After tests OK, will
# make a v0.5 and change this back to be an example of the right way
# to do this.
- curl https://raw.github.com/greghendershott/travis-racket/master/install-racket.sh | sh
# - curl -L https://github.com/greghendershott/travis-racket/releases/download/v0.4/install-racket.sh | sh
- curl https://raw.github.com/greghendershott/travis-racket/master/install-racket.sh | bash
# - curl -L https://github.com/greghendershott/travis-racket/releases/download/v0.4/install-racket.sh | bash
install:

View File

@ -1,3 +1,6 @@
# IMPORTANT: Your .travis.yml must pipe this to bash (not to sh)!
# In the Travis CI environment a #!/bin/bash shebang here won't help.
set -e
if [[ "$RACKET_VERSION" = "HEAD" ]]; then