mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 05:47:11 +00:00
17 lines
606 B
Bash
Executable file
17 lines
606 B
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="/Users/ikechan8370/Yunzai-Bot/node_modules/.pnpm/node_modules"
|
|
else
|
|
export NODE_PATH="$NODE_PATH:/Users/ikechan8370/Yunzai-Bot/node_modules/.pnpm/node_modules"
|
|
fi
|
|
if [ -x "$basedir/node" ]; then
|
|
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/uuid@9.0.0/node_modules/uuid/dist/bin/uuid" "$@"
|
|
else
|
|
exec node "$basedir/../../../../node_modules/.pnpm/uuid@9.0.0/node_modules/uuid/dist/bin/uuid" "$@"
|
|
fi
|