Umami version upgraded to v2.12.0 (#1630)

This commit is contained in:
Claus.Lee
2024-06-24 17:03:42 +08:00
committed by GitHub
parent 036e65470e
commit f4728d2d44
3 changed files with 1 additions and 1 deletions

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