From 8a767145c9e34398ca8f2c4c5c9086b0ab79788a Mon Sep 17 00:00:00 2001 From: Kunal Pathak Date: Tue, 21 Mar 2017 08:34:29 -0700 Subject: [PATCH] gyp: Revert quote_cmd workaround MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node-gyp/pull/1153 Fixes: https://github.com/nodejs/node-gyp/issues/1151 Reviewed-By: João Reis Reviewed-By: Anna Henningsen Reviewed-By: Refael Ackermann --- gyp/pylib/gyp/generator/msvs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gyp/pylib/gyp/generator/msvs.py b/gyp/pylib/gyp/generator/msvs.py index 2b3ae19b0c..6bfad0f3bd 100644 --- a/gyp/pylib/gyp/generator/msvs.py +++ b/gyp/pylib/gyp/generator/msvs.py @@ -354,8 +354,6 @@ def _BuildCommandLineForRuleRaw(spec, cmd, cygwin_shell, has_input_path, command = ['type'] else: command = [cmd[0].replace('/', '\\')] - if quote_cmd: - command = ['"%s"' % i for i in command] # Add call before command to ensure that commands can be tied together one # after the other without aborting in Incredibuild, since IB makes a bat # file out of the raw command string, and some commands (like python) are