mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 01:01:02 +08:00
17 lines
204 B
Bash
17 lines
204 B
Bash
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
|
|
DATA_DIR="$N8N_ROOT_PATH/data"
|
|
|
|
mkdir -p "$DATA_DIR"
|
|
|
|
chmod -R 777 "$DATA_DIR"
|
|
|
|
echo "Check Finish."
|
|
|
|
else
|
|
echo "Error: .env file not found."
|
|
fi
|