appstore-1panel/apps/gitea/1.21.10/scripts/upgrade.sh
renovate[bot] 3e7937e1a3
chore(deps): update gitea.cn/gitea/gitea docker tag to v1.21.10 (#1177)
* chore(deps): update gitea.cn/gitea/gitea docker tag to v1.21.10

* Update app version [skip ci]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2024-04-02 15:15:05 +08: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