Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorbangbang93 <bangbang93@163.com>2015-05-21 05:49:24 +0300
committerForrest L Norvell <forrest@npmjs.com>2015-05-22 04:27:02 +0300
commit9bcf5730bd0316f210dafea898afe9103849cea9 (patch)
tree880bbcb9bfe764d8abb5fb70ad7fa5ff4aa0831b /bin
parent68405a33ba8c7aaa46832cb17f43f93389106b97 (diff)
windows: run node-gyp.js instead of opening it
PR-URL: https://github.com/npm/npm/pull/8324
Diffstat (limited to 'bin')
-rwxr-xr-xbin/node-gyp-bin/node-gyp.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/node-gyp-bin/node-gyp.cmd b/bin/node-gyp-bin/node-gyp.cmd
index a05fd8cae..ea613d3ad 100755
--- a/bin/node-gyp-bin/node-gyp.cmd
+++ b/bin/node-gyp-bin/node-gyp.cmd
@@ -1,5 +1,5 @@
if not defined npm_config_node_gyp (
node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %*
) else (
- %npm_config_node_gyp% %*
+ node %npm_config_node_gyp% %*
)