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