pantry/projects/npmjs.com/npx-shim

11 lines
215 B
Plaintext
Raw Normal View History

#!/bin/sh
# or npx fails ※
# FIXME a patch to npm here then upstream would be preferable
mkdir -p ~/.local/lib
2023-04-22 17:13:45 +03:00
d="$(cd "$(dirname $0)" && pwd)"
"$d"/npm exec "$@"
# ※ https://github.com/teaxyz/cli/issues/532