From c8ee6fee3526881cda9057f0479388b8510f287a Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Fri, 10 Oct 2014 14:03:13 +0200 Subject: [PATCH] .travis.yml: Fix Node.js versions `0.10` becomes `0.1` unless strings are used. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1089aec376..cc3463ab1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: node_js node_js: - - 0.10 - - 0.11 + - "0.10" + - "0.11" before_script: "npm install -g codeclimate-test-reporter" script: "make test-travis"