comments
This commit is contained in:
parent
39e58b8bd6
commit
b556643e78
|
@ -2,8 +2,12 @@
|
|||
'use strict';
|
||||
|
||||
var args = process.argv.slice(2);
|
||||
console.log(args);
|
||||
//console.log(args);
|
||||
//['certonly', 'add', 'config', 'defaults', 'remove']
|
||||
if ('certonly' === args[0]) {
|
||||
require('./certonly.js');
|
||||
return;
|
||||
}
|
||||
|
||||
console.error("command not yet implemented");
|
||||
process.exit();
|
||||
|
|
Loading…
Reference in New Issue