-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathastro
More file actions
executable file
·17 lines (15 loc) · 1.25 KB
/
astro
File metadata and controls
executable file
·17 lines (15 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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="/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/astro@5.4.2_jiti@2.4.2_lightningcss@1.29.1_rollup@4.34.7_typescript@5.8.2_yaml@2.7.0/node_modules/astro/node_modules:/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/astro@5.4.2_jiti@2.4.2_lightningcss@1.29.1_rollup@4.34.7_typescript@5.8.2_yaml@2.7.0/node_modules:/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/astro@5.4.2_jiti@2.4.2_lightningcss@1.29.1_rollup@4.34.7_typescript@5.8.2_yaml@2.7.0/node_modules/astro/node_modules:/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/astro@5.4.2_jiti@2.4.2_lightningcss@1.29.1_rollup@4.34.7_typescript@5.8.2_yaml@2.7.0/node_modules:/Users/krishnachaitanya/Documents/GitHub/Krishna-Website/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../astro/astro.js" "$@"
else
exec node "$basedir/../astro/astro.js" "$@"
fi