14 lines
234 B
Bash
Executable File
14 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source "$DIR"/node.common
|
|
|
|
# "$DIR"/../.nodejs-config/node_modules/.bin/pnpm "$@"
|
|
|
|
echo pnpm file: "$DIR"/../shims/pnpm
|
|
|
|
exec "$DIR"/../binaries/pnpm "$@"
|