1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-19 01:11:02 +08:00
github-action update-app-version 62c084bf6b Update app version [skip ci]
2025-06-19 15:06:49 +00:00

11 lines
207 B
Bash

#!/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