mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-24 20:29:40 +08:00
15 lines
230 B
Bash
15 lines
230 B
Bash
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
|
|
mkdir -p "$TOPIAM_CE_ROOT_PATH"
|
|
mkdir -p "$TOPIAM_CE_ROOT_PATH/logs"
|
|
chmod -R 777 "$TOPIAM_CE_ROOT_PATH"
|
|
|
|
echo "Check Finish."
|
|
|
|
else
|
|
echo "Error: .env file not found."
|
|
fi
|