From a817481cf67bdb9bacd2b22cc271151a855c2dd6 Mon Sep 17 00:00:00 2001 From: Kevin Dangoor Date: Thu, 7 Aug 2014 11:05:20 -0400 Subject: [PATCH] Put node version number in quotes. This was the cause of [some Travis build errors](https://github.com/travis-ci/travis-ci/issues/2591). In YAML, apparently `0.10` is treated as a float, so Travis was trying to use node 0.1 rather than 0.10. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b9b47eac4..c63fe4326 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - 0.10 + - "0.10" before_script: - npm install -g grunt-cli - npm install -g jasmine-node