summaryrefslogtreecommitdiff
path: root/deps/npm/bin
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-01-16 15:06:16 -0800
committerisaacs <i@izs.me>2012-01-16 15:06:16 -0800
commit25410096b4c38eb9b17501ea06349872ab33e1ea (patch)
treeeaebef0d121d13a517114bdb1e0b5c08a1500088 /deps/npm/bin
parentf0c1376e07e6d5a4deb3d088bd3153d7f6af1298 (diff)
downloadnode-new-25410096b4c38eb9b17501ea06349872ab33e1ea.tar.gz
Update npm to 1.1.0-2
Diffstat (limited to 'deps/npm/bin')
-rwxr-xr-xdeps/npm/bin/npm6
-rw-r--r--deps/npm/bin/npm-g.cmd6
-rw-r--r--deps/npm/bin/npm_g.cmd6
3 files changed, 6 insertions, 12 deletions
diff --git a/deps/npm/bin/npm b/deps/npm/bin/npm
new file mode 100755
index 0000000000..5fbcd3b035
--- /dev/null
+++ b/deps/npm/bin/npm
@@ -0,0 +1,6 @@
+#!/bin/sh
+if [ -x "`dirname "$0"`/node.exe" ]; then
+ "`dirname "$0"`/node.exe" "`dirname "$0"`/node_modules/npm/bin/npm-cli.js" "$@"
+else
+ node "`dirname "$0"`/node_modules/npm/bin/npm-cli.js" "$@"
+fi
diff --git a/deps/npm/bin/npm-g.cmd b/deps/npm/bin/npm-g.cmd
deleted file mode 100644
index bac9e5f1c4..0000000000
--- a/deps/npm/bin/npm-g.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-:: Created by npm, please don't edit manually.
-@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
diff --git a/deps/npm/bin/npm_g.cmd b/deps/npm/bin/npm_g.cmd
deleted file mode 100644
index bac9e5f1c4..0000000000
--- a/deps/npm/bin/npm_g.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-:: Created by npm, please don't edit manually.
-@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