Skip to content

Commit

Permalink
Don't use sh to run a bash script
Browse files Browse the repository at this point in the history
Our bash buildAll.sh was being started with `sh`. Instead
we let the script decide what to use.

Change-Id: I5a452a3f16f2c1c37b4a5450ac2d5c6fa92041e7
  • Loading branch information
irbull committed Jun 22, 2017
1 parent ba8c19b commit 40d4f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: required
services: docker
before_install: curl -O http://download.eclipsesource.com/j2v8/v8/node.out-7_4_0.tar.gz
script: sh ./buildAll.sh
script: ./buildAll.sh

0 comments on commit 40d4f03

Please sign in to comment.