feat: update openlist 4.2.2-aio

This commit is contained in:
arch3rPro
2026-05-26 03:37:25 +08:00
parent c4d1b19d92
commit 99076dca58
6 changed files with 2 additions and 2 deletions
@@ -0,0 +1,12 @@
#!/bin/bash
if [[ -f ./.env ]]; then
if grep -q 'PANEL_APP_PORT_S3' ./.env; then
echo "PANEL_APP_PORT_S3 参数已存在"
else
echo 'PANEL_APP_PORT_S3=5426' >> ./.env
echo "已添加 PANEL_APP_PORT_S3=5426"
fi
else
echo ".env 文件不存在"
fi