From: Chris Rebert Date: Sat, 28 May 2016 20:39:40 +0000 (-0700) Subject: Travis: Upgrade Node.js from v5 to v6 (#19980) X-Git-Tag: v4.0.0-alpha.3~66^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=680cb317ed9ef8e7a05ecaa10673b24ca6b4e11a;p=thirdparty%2Fbootstrap.git Travis: Upgrade Node.js from v5 to v6 (#19980) v6 is the current stable version and will be an LTS version. v5 is not an LTS version. Refs https://github.com/nodejs/LTS --- diff --git a/.travis.yml b/.travis.yml index 058a26aa4e..2f5ad1e965 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ git: depth: 10 node_js: - "4" - - "5" + - "6" before_install: # Remove ./node_modules/.bin from PATH so node-which doesn't replace Unix which and cause RVM to barf. See https://github.com/travis-ci/travis-ci/issues/5092 - export PATH=$(python -c 'from sys import argv;from collections import OrderedDict as od;print(":".join(od((p,None) for p in argv[1].split(":") if p.startswith("/")).keys()))' "$PATH")