更新 docker-entrypoint.sh 为v3plus

This commit is contained in:
Sirly 2023-01-12 12:40:32 +08:00 committed by GitHub
parent 8890355487
commit ab44a702f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
set +e
@ -14,16 +14,12 @@ Warn="${YellowBG}[提示]${Font}"
WORK_DIR="/app/Yunzai-Bot"
MIAO_PLUGIN_PATH="/app/Yunzai-Bot/plugins/miao-plugin"
XIAOYAO_CVS_PATH="/app/Yunzai-Bot/plugins/xiaoyao-cvs-plugin"
PY_PLUGIN_PATH="/app/Yunzai-Bot/plugins/py-plugin"
if [[ ! -d "$HOME/.ovo" ]]; then
mkdir ~/.ovo
fi
if [ $CUID ]; then
chown -R ${CUID}:${CGID} $(WORK_DIR)
chmod -R 777 $(WORK_DIR)
fi
echo -e "\n ================ \n ${Info} ${GreenBG} 拉取 Yunzai-Bot 更新 ${Font} \n ================ \n"
cd $WORK_DIR
@ -79,6 +75,38 @@ if [ -d $MIAO_PLUGIN_PATH"/.git" ]; then
fi
if [ -d $PY_PLUGIN_PATH"/.git" ]; then
echo -e "\n ================ \n ${Info} ${GreenBG} 拉取 py-plugin 插件更新 ${Font} \n ================ \n"
cd $PY_PLUGIN_PATH
if [[ -n $(git status -s) ]]; then
echo -e " ${Warn} ${YellowBG} 当前工作区有修改,尝试暂存后更新。${Font}"
git add .
git stash
git pull origin main --allow-unrelated-histories --rebase
git stash pop
else
git pull origin main --allow-unrelated-histories
fi
if [[ ! -f "$HOME/.ovo/py.ok" ]]; then
set -e
echo -e "\n ================ \n ${Info} ${GreenBG} 更新 py-plugin 运行依赖 ${Font} \n ================ \n"
pnpm install iconv-lite @grpc/grpc-js @grpc/proto-loader -w
poetry config virtualenvs.in-project true
poetry install
touch ~/.ovo/py.ok
set +e
fi
echo -e "\n ================ \n ${Version} ${BlueBG} py-plugin 插件版本信息 ${Font} \n ================ \n"
git log -1 --pretty=format:"%h - %an, %ar (%cd) : %s"
fi
if [ -d $XIAOYAO_CVS_PATH"/.git" ]; then
echo -e "\n ================ \n ${Info} ${GreenBG} 拉取 xiaoyao-cvs 插件更新 ${Font} \n ================ \n"