From b556643e781f4d45c26976d52334c5ad96ad5c12 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 1 Nov 2019 05:30:49 -0600 Subject: [PATCH] comments --- bin/greenlock.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/greenlock.js b/bin/greenlock.js index 4b6c590..51cc82c 100755 --- a/bin/greenlock.js +++ b/bin/greenlock.js @@ -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();