18 lines
1.5 KiB
Text
18 lines
1.5 KiB
Text
|
#!/bin/sh
|
||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||
|
|
||
|
case `uname` in
|
||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||
|
esac
|
||
|
|
||
|
if [ -z "$NODE_PATH" ]; then
|
||
|
export NODE_PATH="/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/bin/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/node_modules"
|
||
|
else
|
||
|
export NODE_PATH="/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/bin/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/rollup@4.18.0/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/node_modules:$NODE_PATH"
|
||
|
fi
|
||
|
if [ -x "$basedir/node" ]; then
|
||
|
exec "$basedir/node" "$basedir/../../../../../../../../../../node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/bin/rollup" "$@"
|
||
|
else
|
||
|
exec node "$basedir/../../../../../../../../../../node_modules/.pnpm/rollup@4.18.0/node_modules/rollup/dist/bin/rollup" "$@"
|
||
|
fi
|