mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
11 lines
250 B
Bash
Executable file
11 lines
250 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# or npx fails ※
|
|
# FIXME a patch to npm here then upstream would be preferable
|
|
mkdir -p ~/.local/lib
|
|
|
|
d="$(cd "$(dirname $0)"/.. && pwd)"
|
|
exec "$d"/lib/node_modules/npm/bin/npx-cli.js "$@"
|
|
|
|
# ※ https://github.com/teaxyz/cli/issues/532
|