Umami version upgraded to v2.13.2 (#2006)

This commit is contained in:
Claus.Lee
2024-08-28 13:48:36 +08:00
committed by GitHub
parent 2c608b3509
commit 83268f04aa
3 changed files with 1 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
if [[ -f ./.env ]]; then
if grep -q "PANEL_DB_TYPE" ./.env; then
echo "PANEL_DB_TYPE 已存在"
else
echo 'PANEL_DB_TYPE="mysql"' >> ./.env
fi
else
echo ".env 文件不存在"
fi