From 0fce59610fa881887b94fb525e40e48daf80b90b Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Tue, 6 Sep 2016 13:28:55 -0400 Subject: [PATCH] Removes warnings requiring Node LTS. --- .travis.yml | 5 +++-- appveyor.yml | 1 + bin/tessel-2.js | 5 ----- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6cbe9951..96e3e0bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,9 @@ os: - linux - osx node_js: - - "4" - - "5" + - 4 + - 5 + - 6 env: - CXX=g++-4.8 addons: diff --git a/appveyor.yml b/appveyor.yml index f2375aef..c05c541d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,6 +6,7 @@ environment: matrix: - nodejs_version: 4 - nodejs_version: 5 + - nodejs_version: 6 platform: - x86 diff --git a/bin/tessel-2.js b/bin/tessel-2.js index 34c54456..98b8d00a 100755 --- a/bin/tessel-2.js +++ b/bin/tessel-2.js @@ -19,11 +19,6 @@ const CLI_ENTRYPOINT = 'cli.entrypoint'; // Check for updates const pkg = require('../package.json'); -if (parseInt(process.versions.node) > 5) { - log.error('Tessel 2 CLI (t2-cli) is supported for use with the Node.js 4.x.x LTS Release.'); - process.exit(); -} - /* * If a command has been run with root, * do not try to read the update-notifier config file.