From e90568e044591e5160f81e613c52ec57b243e588 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 13 Oct 2013 12:13:31 -0700 Subject: [PATCH] Ensure .travis.yml builds the modern build, even though it's available under a different name. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 58c248c87..311b76e65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,7 +49,7 @@ before_install: - "[ $BIN == 'ringo' ] && sudo ln -s /opt/ringojs-0.9/bin/ringo /usr/local/bin/ringo && sudo chmod +x /usr/local/bin/ringo || true" script: - "[ $BIN == 'istanbul' ] && $BIN cover ./test/test.js || true" - - "[ $BUILD != false ] && [ $BUILD != 'compat' ] && [ $BUILD != 'modern' ] && MAKE=true || true" + - "[ $BUILD != false ] && [ $BUILD != 'compat' ] && MAKE=true || true" - "[ $MAKE != false ] && git clone --depth=1 --branch=master git://github.com/lodash/lodash-cli.git ./node_modules/lodash-cli || true" - "[ $MAKE != false ] && mkdir ./node_modules/lodash-cli/node_modules && cd ./node_modules/lodash-cli/node_modules/ && ln -s ../../../ ./lodash && cd ../ && npm i . && cd ../../ || true" - "[ $MAKE != false ] && node ./node_modules/lodash-cli/bin/lodash $BUILD -o ./dist/lodash.$BUILD.js || true"