Skip to content

Commit 711396a

Browse files
committed
Use the before_install tag to set the permission of the dep script.
Change-Id: I2eba65e1af47ce3affb7f6bd8d74ab1ddbccb06f
1 parent 1bda37e commit 711396a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
os: osx
22
language: cpe
33
compiler: clang
4-
before_script:
5-
- chmod build-node.sh
6-
install: ./build-node.sh
4+
before_install:
5+
- chmod -x build-node.sh
6+
install: sh ./build-node.sh

build-node.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
git checkout git@github.com:nodejs/node.git
1+
git clone https://github.com/nodejs/node.git
22
cd node
3+
git checkout v5.9.1
34
./configure
45
make

0 commit comments

Comments
 (0)