From 0980ba367af62ad9e4f0fd4a64f934e13dcab5f3 Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Sat, 15 Nov 2014 10:13:23 +0100 Subject: [PATCH] arg fwd should also work on windows --- npm/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/install.js b/npm/install.js index ec0b66f1ab07..146a4990ad3a 100755 --- a/npm/install.js +++ b/npm/install.js @@ -25,7 +25,7 @@ var paths = { var argv = { darwin: '"$@"', linux: '"$@"', - win32: '"$@"' // 90% sure this isn't right + win32: '%*' // does this work with " " in the args? } if (!paths[platform]) throw new Error('Unknown platform: '+platform)