1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-23 04:29:39 +08:00
renovate[bot] 515a83af21 chore(deps): update xhofe/alist docker tag to v3.38.0 (#2278)
* chore(deps): update xhofe/alist docker tag to v3.38.0

* 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-10-14 11:10:23 +08:00

13 lines
267 B
Bash

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