diff --git a/bin/ns-bundle b/bin/ns-bundle index 98e72989..0095af86 100644 --- a/bin/ns-bundle +++ b/bin/ns-bundle @@ -211,9 +211,8 @@ function getCommand(flags) { function spawnChildProcess(command, ...args) { return new Promise((resolve, reject) => { const escapedArgs = args.map(escapeWithQuotes) - const escapedCommand = escapeWithQuotes(command) - const childProcess = spawn(escapedCommand, escapedArgs, { + const childProcess = spawn(command, escapedArgs, { stdio: "inherit", pwd: PROJECT_DIR, shell: true,