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:
authorisaacs <i@izs.me>2012-02-16 04:38:52 +0400
committerisaacs <i@izs.me>2012-02-16 04:58:41 +0400
commit391e7d04c906647c6bf734d066dd62ead5286c87 (patch)
tree7f4a694fedfd78b79f0402b8f2abce274b72be15 /bin
parent1b2635ab3103ff18687e6fdb1b31f2755c36d338 (diff)
Simplify confusing windows paths
Diffstat (limited to 'bin')
-rw-r--r--bin/npm.cmd8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/npm.cmd b/bin/npm.cmd
index bac9e5f1c..7720e2052 100644
--- a/bin/npm.cmd
+++ b/bin/npm.cmd
@@ -1,6 +1,6 @@
:: Created by npm, please don't edit manually.
-@IF EXIST "%~dp0"\"node.exe" (
- "%~dp0"\"node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
+@IF EXIST "%~dp0\node.exe" (
+ "%~dp0\node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
) ELSE (
- node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
-) \ No newline at end of file
+ node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
+)