From f3b38ece1a00239c9a2b4f75c75cfd9d796e09ec Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Tue, 1 Dec 2020 17:04:45 -0800 Subject: [PATCH] Added -help command --- agents/meshinstall-linux.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/agents/meshinstall-linux.js b/agents/meshinstall-linux.js index 1564cb8c..b2ce5328 100644 --- a/agents/meshinstall-linux.js +++ b/agents/meshinstall-linux.js @@ -85,6 +85,30 @@ if (process.argv.includes('-mesh')) process.exit(); } +if (process.argv.includes('-help')) +{ + console.log("\nYou can run the text version from the command line with the following command(s): "); + if ((msh.InstallFlags & 1) == 1) + { + console.log('./' + process.execPath.split('/').pop() + ' -connect'); + } + if ((msh.InstallFlags & 2) == 2) + { + if (s) + { + console.log('./' + process.execPath.split('/').pop() + ' -update'); + console.log('./' + process.execPath.split('/').pop() + ' -uninstall'); + } + else + { + console.log('./' + process.execPath.split('/').pop() + ' -install'); + console.log('./' + process.execPath.split('/').pop() + ' -install --installPath="/alternate/path"'); + } + } + console.log(''); + process.exit(); +} + if ((msh.InstallFlags & 1) == 1) { buttons.unshift('Connect');