embark-area-51/bin/embark

15 lines
319 B
Plaintext
Raw Normal View History

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