1
0
镜像自地址 https://github.com/therootcompany/greenlock.js.git 已同步 2024-11-16 17:29:00 +00:00
这个提交包含在:
AJ ONeal 2019-11-01 05:30:49 -06:00
父节点 39e58b8bd6
当前提交 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();