diff --git a/tools/isobuild/meteor-npm.js b/tools/isobuild/meteor-npm.js index 5af95cd92d..5e14f9a043 100644 --- a/tools/isobuild/meteor-npm.js +++ b/tools/isobuild/meteor-npm.js @@ -342,7 +342,8 @@ var runNpmCommand = function (args, cwd) { var npmPath; if (os.platform() === "win32") { - npmPath = files.pathJoin(nodeBinDir, "npm.cmd"); + npmPath = files.convertToOSPath( + files.pathJoin(nodeBinDir, "npm.cmd")); } else { npmPath = files.pathJoin(nodeBinDir, "npm"); }