This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/bin/triton

20 lines
361 B
Plaintext
Raw Normal View History

2014-02-07 23:21:24 +02:00
#!/usr/bin/env node
/*
2015-08-25 21:49:46 +03:00
* Copyright (c) 2015 Joyent Inc. All rights reserved.
2014-02-07 23:21:24 +02:00
*
2015-08-25 21:49:46 +03:00
* triton command
2014-02-07 23:21:24 +02:00
*/
var p = console.log;
var cmdln = require('cmdln');
var CLI = require('../lib/cli');
if (require.main === module) {
var cli = new CLI();
cmdln.main(cli, {
argv: process.argv,
showCode: true,
showNoCommandErr: false
});
2014-02-07 23:21:24 +02:00
}