appstore-1panel/apps/chatgpt-next-web/2.15.3/scripts/upgrade.sh
renovate[bot] 888bec88e8
chore(deps): update yidadaa/chatgpt-next-web docker tag to v2.15.3 (#2179)
* chore(deps): update yidadaa/chatgpt-next-web docker tag to v2.15.3

* 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-09-26 22:06:49 +08:00

11 lines
229 B
Bash

#!/bin/bash
if [[ -f ./.env ]]; then
if grep -q "WHITE_WEBDEV_ENDPOINTS" ./.env; then
echo "WHITE_WEBDEV_ENDPOINTS 已存在"
else
echo 'WHITE_WEBDEV_ENDPOINTS=""' >> ./.env
fi
else
echo ".env 文件不存在"
fi