aboutsummaryrefslogtreecommitdiff
path: root/deps/npm/bin/npm
blob: 5fbcd3b035c97d363bbc9c25b61333e4354817db (plain)
1
2
3
4
5
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