You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
1.5 KiB

#!/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