1
0
1Panel-Appstore/apps/pixman/1.8.2/scripts/init.sh

16 lines
241 B
Bash
Raw Normal View History

2024-07-28 02:13:37 +08:00
#!/bin/bash
if [ -f .env ]; then
source .env
2024-07-28 02:37:50 +08:00
if [ ! -d $PIXMAN_ROOT_PATH/m3u ]; then
mkdir -p $PIXMAN_ROOT_PATH/m3u
fi
cp -rf ./m3u/* $PIXMAN_ROOT_PATH/m3u/
2024-07-28 02:13:37 +08:00
echo "Check Finish."
else
echo "Error: .env file not found."
fi