2
0
mirror of https://github.com/therootcompany/greenlock.js.git synced 2025-12-24 12:08:39 +00:00
greenlock.js/bin/greenlock.js

10 lines
156 B
JavaScript
Executable File

#!/usr/bin/env node
'use strict';
var args = process.argv.slice(2);
console.log(args);
if ('certonly' === args[0]) {
require('./certonly.js');
return;
}