Some checks failed
Update Docker Hub Description / dockerHubDescription (push) Has been cancelled
Node.js CI / Test (14.x) (push) Has been cancelled
Node.js CI / Test (16.x) (push) Has been cancelled
Node.js CI / Test (18.x) (push) Has been cancelled
Node.js CI / Lint (14.x) (push) Has been cancelled
18 lines
1.1 KiB
Bash
Executable File
18 lines
1.1 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="/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/NeteaseCloudMusicApi@4.27.0_7cd87476f665b4f82bd82cd82a10336d/node_modules/NeteaseCloudMusicApi/node_modules:/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/NeteaseCloudMusicApi@4.27.0_7cd87476f665b4f82bd82cd82a10336d/node_modules:/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/node_modules"
|
|
else
|
|
export NODE_PATH="/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/NeteaseCloudMusicApi@4.27.0_7cd87476f665b4f82bd82cd82a10336d/node_modules/NeteaseCloudMusicApi/node_modules:/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/NeteaseCloudMusicApi@4.27.0_7cd87476f665b4f82bd82cd82a10336d/node_modules:/Users/kudzues/Downloads/未命名文件夹/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
fi
|
|
if [ -x "$basedir/node" ]; then
|
|
exec "$basedir/node" "$basedir/../../app.js" "$@"
|
|
else
|
|
exec node "$basedir/../../app.js" "$@"
|
|
fi
|