diff --git a/cli/commands/index.js b/cli/commands/index.js index 60cfecbb42..8212986055 100644 --- a/cli/commands/index.js +++ b/cli/commands/index.js @@ -14,7 +14,6 @@ var commands = { test: hotload('./test'), policy: hotload('./policy'), protect: hotload('./protect'), - support: hotload('./support'), wizard: hotload('./protect/wizard'), modules: hotload('./modules'), scenario: hotload('./scenario'), diff --git a/cli/commands/support.js b/cli/commands/support.js deleted file mode 100644 index 94ae0ec6a7..0000000000 --- a/cli/commands/support.js +++ /dev/null @@ -1,21 +0,0 @@ -module.exports = support; - -var Promise = require('es6-promise').Promise; // jshint ignore:line -var open = require('open'); -var os = require('os'); -var osName = require('os-name'); -var version = require('./version'); - -function support() { - return version().then(function (v) { - var msg = '\nUseful information to file a new issue with:\n' + - '\n- snyk ' + v + - '\n- node ' + process.version + - '\n- ' + osName(os.platform(), os.release()) + - '\n'; - setTimeout(function () { - open('https://github.com/snyk/support'); - }, 1000); - return msg; - }); -} \ No newline at end of file