From 912d5c700c51446bc8141661679d65b9d3ff43df Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 29 Sep 2013 20:21:45 -0700 Subject: [PATCH] Change `before_script` to the more appropriate `before_install` in .travis.yml. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9dd4af0ad..348481230 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ git: branches: only: - master -before_script: +before_install: - "[ $BIN == 'istanbul' ] && npm install -g istanbul || true" - "[ $BIN == 'narwhal' ] && wget https://github.com/280north/narwhal/archive/v0.3.2.zip && sudo unzip v0.3.2 -d /opt/ && rm v0.3.2.zip || true" - "[ $BIN == 'narwhal' ] && sudo ln -s /opt/narwhal-0.3.2/bin/narwhal /usr/local/bin/narwhal && sudo chmod +x /usr/local/bin/narwhal || true"