1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-02 15:56:40 +08:00

14 lines
189 B
Bash

#!/bin/bash
if [ -f .env ]; then
source .env
mkdir -p "$KOMGA_ROOT_PATH"
chown -R 1000:1000 "$KOMGA_ROOT_PATH"
echo "Check Finish."
else
echo "Error: .env file not found."
fi