From ef129e4c8c551a366da0e1b6e74d8005bea851c8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 13 Oct 2016 00:18:30 -0700 Subject: [PATCH] Use semicolons in place of `&&`. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index be4895655..d7f09060f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -80,8 +80,8 @@ install: # Use lodash-cli from GitHub. - git clone --depth=10 --branch=master git://github.com/lodash/lodash-cli ./node_modules/lodash-cli - - mkdir -p ./node_modules/lodash-cli/node_modules/lodash && cd $_ && cp ../../../../lodash.js ./lodash.js && cp ../../../../package.json ./package.json - - cd ../../ && npm i --production && cd ../../ + - mkdir -p ./node_modules/lodash-cli/node_modules/lodash; cd $_; cp ../../../../lodash.js ./lodash.js; cp ../../../../package.json ./package.json + - cd ../../; npm i --production; cd ../../ script: # Detect code coverage. @@ -98,7 +98,8 @@ script: - | if [ $ISTANBUL = false ]; then node ./node_modules/lodash-cli/bin/lodash -o ./dist/lodash.js - node ./node_modules/lodash-cli/bin/lodash modularize exports=node -o ./ && node ./node_modules/lodash-cli/bin/lodash -d -o ./lodash.js + node ./node_modules/lodash-cli/bin/lodash modularize exports=node -o ./ + node ./node_modules/lodash-cli/bin/lodash -d -o ./lodash.js if [ $SAUCE_LABS = false ]; then cd ./test $BIN $OPTION ./test.js ../lodash.js