mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-16 00:41:55 +08:00
12 lines
239 B
Bash
12 lines
239 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
|