mirror of
https://github.com/System-End/3d-website.git
synced 2026-04-19 21:05:11 +00:00
16 lines
380 B
Bash
Executable file
16 lines
380 B
Bash
Executable file
#!/bin/sh
|
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
|
|
case `uname` in
|
|
*CYGWIN*|*MINGW*|*MSYS*)
|
|
if command -v cygpath > /dev/null 2>&1; then
|
|
basedir=`cygpath -w "$basedir"`
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
if [ -x "$basedir/node" ]; then
|
|
exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
|
|
else
|
|
exec node "$basedir/../vite/bin/vite.js" "$@"
|
|
fi
|