From f2c9370e6a237f7a49e58b5d97a50394dadbaf3e Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Thu, 1 Sep 2022 11:00:46 -0700 Subject: [PATCH] Updated so pass thru arguments are passed thru installer --- modules/interactive.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/interactive.js b/modules/interactive.js index b78e80b..e33fda0 100644 --- a/modules/interactive.js +++ b/modules/interactive.js @@ -339,6 +339,10 @@ limitations under the License. { p.push('--installPath="' + process.argv[i].split('=').pop() + '"'); } + else if(process.argv[i].startsWith('--')) + { + p.push(process.argv[i]); + } } _install(p); process.exit();