mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-15 21:31:55 +08:00
Meng Sen
bfc4f45eb9
Some checks failed
Push custom to released / push-branch (push) Has been cancelled
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
16 lines
247 B
Bash
16 lines
247 B
Bash
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
|
|
# setup-1 add default values
|
|
CURRENT_DIR=$(pwd)
|
|
sed -i '/^ENV_FILE=/d' .env
|
|
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
|
|
|
echo "Check Finish."
|
|
|
|
else
|
|
echo "Error: .env file not found."
|
|
fi
|