4 lines
142 B
Bash
4 lines
142 B
Bash
#!/bin/sh
|
|
# Thin launcher for the real npm CLI (npm ships as JS, not a binary).
|
|
exec node /usr/local/lib/node_modules/npm/bin/npm-cli.js "$@"
|