Anthony Berg 53bc9d5341
All checks were successful
/ Deploy to Cloudflare Pages (push) Successful in 2m54s
Quartz sync: Mar 3, 2025, 12:08 PM
2025-03-03 12:08:25 +01:00

18 lines
1.1 KiB
Bash
Executable File

#!/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/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/dist/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules/tsx/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/tsx@4.19.3/node_modules:/home/anthony/Repositories/ACIT4330-Page/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../tsx/dist/cli.mjs" "$@"
else
exec node "$basedir/../tsx/dist/cli.mjs" "$@"
fi