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();