arg fwd should also work on windows

This commit is contained in:
Mathias Buus 2014-11-15 10:13:23 +01:00
parent df42990770
commit 0980ba367a

View file

@ -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)