Justin Deal bd8ed8bc9c
Some checks failed
Build and Deploy / build (push) Failing after 10s
Add more animations and attempt CICD fix
2025-05-03 15:31:48 -07:00

18 lines
1.2 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/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules/jiti/lib/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules/jiti/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules/jiti/lib/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules/jiti/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/jiti@2.4.2/node_modules:/home/justin/projects/websites/justin.deal/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../.pnpm/jiti@2.4.2/node_modules/jiti/lib/jiti-cli.mjs" "$@"
else
exec node "$basedir/../.pnpm/jiti@2.4.2/node_modules/jiti/lib/jiti-cli.mjs" "$@"
fi