mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 13:57:10 +00:00
17 lines
612 B
Bash
Executable file
17 lines
612 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/chatgpt@4.7.1/node_modules/chatgpt/bin/cli.js" "$@"
|
|
else
|
|
exec node "$basedir/../../../../node_modules/.pnpm/chatgpt@4.7.1/node_modules/chatgpt/bin/cli.js" "$@"
|
|
fi
|