1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-17 00:33:33 +00:00

Updated so pass thru arguments are passed thru installer

This commit is contained in:
Bryan Roe
2022-09-01 11:00:46 -07:00
parent c7c189de21
commit f2c9370e6a

View File

@@ -339,6 +339,10 @@ limitations under the License.
{ {
p.push('--installPath="' + process.argv[i].split('=').pop() + '"'); p.push('--installPath="' + process.argv[i].split('=').pop() + '"');
} }
else if(process.argv[i].startsWith('--'))
{
p.push(process.argv[i]);
}
} }
_install(p); _install(p);
process.exit(); process.exit();