appstore-1panel/apps/chatgpt-next-web/2.12.3/scripts/upgrade.sh
Anye 78c4bd22b4
chore:Add the whitelist of webdev endpoints to data.yml and Docker Co… (#1513)
* chore:Add the whitelist of webdev endpoints to data.yml and Docker Compose.yml to allow webdav synchronization

* fix:添加更新脚本,添加WHITE_WEBDEV_ENDPOINTS参数
2024-06-01 22:42:15 +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