mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-16 03:51:54 +08:00
11 lines
238 B
Bash
11 lines
238 B
Bash
#!/bin/bash
|
|
|
|
if [[ -f ./.env ]]; then
|
|
if grep -q "DISCOURSE_SKIP_BOOTSTRAP" ./.env; then
|
|
echo "DISCOURSE_SKIP_BOOTSTRAP 已存在"
|
|
else
|
|
echo 'DISCOURSE_SKIP_BOOTSTRAP="yes"' >> ./.env
|
|
fi
|
|
else
|
|
echo ".env 文件不存在"
|
|
fi |