16 lines
318 B
Plaintext
Raw Normal View History

2015-05-24 09:03:43 -04:00
#!/usr/bin/env node
try {
eval('let __nodeTest = 123;');
} catch(e) {
if (e.name === 'SyntaxError') {
2018-09-07 12:37:18 -04:00
console.error("unsupported version of NodeJS. Make sure you are running nodejs 8.11.3 or above");
process.exit();
}
}
var Cmd = require('../cmd/cmd');
var cli = new Cmd();
cli.process(process.argv);