From e74157ba36b899a72b2131332e6a7ce565eea859 Mon Sep 17 00:00:00 2001 From: zhangxinhui02 Date: Fri, 31 Oct 2025 11:00:48 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E8=B0=83=E6=95=B4volume-linker.sh?= =?UTF-8?q?=E7=9A=84=E8=BE=93=E5=87=BA=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helm-chart/files/volume-linker.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm-chart/files/volume-linker.sh b/helm-chart/files/volume-linker.sh index 1c356e17..4a371e3c 100644 --- a/helm-chart/files/volume-linker.sh +++ b/helm-chart/files/volume-linker.sh @@ -5,14 +5,14 @@ # /MaiMBot/statistics是统计数据的实际挂载路径 set -e -echo "[VolumeLinker]Preparing volume..." +echo "[VolumeLinker] Preparing volume..." # 初次启动,在存储卷中检查并创建关键文件和目录 mkdir -p /MaiMBot/data/plugins mkdir -p /MaiMBot/data/logs if [ ! -d "/MaiMBot/statistics" ] then - echo "[VolumeLinker] Statistics volume disabled." + echo "[VolumeLinker] Statistics volume disabled." else touch /MaiMBot/statistics/index.html fi @@ -29,5 +29,5 @@ then fi # 启动麦麦 -echo "[VolumeLinker]Starting MaiBot..." +echo "[VolumeLinker] Starting MaiBot..." exec python bot.py