From f8ec10094dcd50165a6c44c438442558c38f35b4 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Fri, 22 May 2020 13:17:53 -0400 Subject: [PATCH] Missing command line argument serverUrl --- agents/meshcmd.js | 1 + 1 file changed, 1 insertion(+) diff --git a/agents/meshcmd.js b/agents/meshcmd.js index d1222661..009d9f56 100644 --- a/agents/meshcmd.js +++ b/agents/meshcmd.js @@ -140,6 +140,7 @@ function run(argv) { if ((typeof args.hostname) == 'string') { settings.hostname = args.hostname; } if ((typeof args.serverid) == 'string') { settings.serverid = args.serverid; } if ((typeof args.serverhttpshash) == 'string') { settings.serverhttpshash = args.serverhttpshash; } + if ((typeof args.serverurl) == 'string') { settings.serverurl = args.serverurl; } if ((typeof args.remoteport) == 'string') { settings.remoteport = parseInt(args.remoteport); } if ((typeof args.remotetarget) == 'string') { settings.remotetarget = args.remotetarget; } if ((typeof args.out) == 'string') { settings.output = args.out; }