mirror of https://github.com/nodejs/node.git
15 lines
340 B
Bash
Executable File
15 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
(set -o igncr) 2>/dev/null && set -o igncr; # cygwin encoding fix
|
|
|
|
basedir=`dirname "$0"`
|
|
|
|
case `uname` in
|
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
esac
|
|
|
|
if [ -x "$basedir/node.exe" ]; then
|
|
"$basedir/node.exe" "$basedir/node_modules/npm/bin/npm-cli.js" "$@"
|
|
else
|
|
node "$basedir/node_modules/npm/bin/npm-cli.js" "$@"
|
|
fi
|