Missing command line argument serverUrl
Ryan Blenis committed
May 22, 2020 at 13:17 UTC
3c9d77d0979e56e0fbc56fdfbeecf8e8fd847344
1 file changed
+1
agents/meshcmd.js
+1
@@ -140,6 +140,7 @@ function run(argv) {
140
if ((typeof args.hostname) == 'string') { settings.hostname = args.hostname; }
141
if ((typeof args.serverid) == 'string') { settings.serverid = args.serverid; }
142
if ((typeof args.serverhttpshash) == 'string') { settings.serverhttpshash = args.serverhttpshash; }
143
+ if ((typeof args.serverurl) == 'string') { settings.serverurl = args.serverurl; }
144
if ((typeof args.remoteport) == 'string') { settings.remoteport = parseInt(args.remoteport); }
145
if ((typeof args.remotetarget) == 'string') { settings.remotetarget = args.remotetarget; }
146
if ((typeof args.out) == 'string') { settings.output = args.out; }