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.2 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/shx@0.3.4/node_modules/shx/lib/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/shx@0.3.4/node_modules/shx/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/shx@0.3.4/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/shx@0.3.4/node_modules/shx/lib/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/shx@0.3.4/node_modules/shx/node_modules:/home/runner/work/keycloak-rel/keycloak-rel/node_modules/.pnpm/shx@0.3.4/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/shx@0.3.4/node_modules/shx/lib/cli.js" "$@"
else
exec node "$basedir/../../../../../../../../../../node_modules/.pnpm/shx@0.3.4/node_modules/shx/lib/cli.js" "$@"
fi