From 517ee439b934227e6ad170376425e790e72428f9 Mon Sep 17 00:00:00 2001 From: Tomoaki Abe Date: Mon, 24 Jun 2019 14:27:23 +0900 Subject: [PATCH] Revert "add executable arguments to spawn in win32" --- index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/index.js b/index.js index 4956c5013..da594e9cd 100644 --- a/index.js +++ b/index.js @@ -568,8 +568,6 @@ Command.prototype.executeSubCommand = function(argv, args, unknown) { } } else { args.unshift(bin); - // add executable arguments to spawn - args = (process.execArgv || []).concat(args); proc = spawn(process.execPath, args, { stdio: 'inherit' }); }