Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@chrisrebert.com>2016-05-28 23:39:40 +0300
committerChris Rebert <github@chrisrebert.com>2016-05-28 23:39:40 +0300
commit680cb317ed9ef8e7a05ecaa10673b24ca6b4e11a (patch)
tree4bc1bb57e4c25b92c508499aff47f6c4816a321f /.travis.yml
parent4bca0f878a279f3301c66176826381e1d87639af (diff)
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
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
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")