mirror of https://github.com/nodejs/node.git
7 lines
203 B
Plaintext
7 lines
203 B
Plaintext
|
#!/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
|