Skip to content

Commit

Permalink
npm cmd files, for easier node msi building
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Nov 16, 2011
1 parent 3136abc commit 80c7f1e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/npm-g.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +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" %*
) ELSE (
node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
)
6 changes: 6 additions & 0 deletions bin/npm.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +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" %*
) ELSE (
node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
)
6 changes: 6 additions & 0 deletions bin/npm_g.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +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" %*
) ELSE (
node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %*
)

0 comments on commit 80c7f1e

Please sign in to comment.