1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-19 03:51:04 +08:00

16 lines
241 B
Bash

#!/bin/bash
if [ -f .env ]; then
source .env
if [ ! -d $PIXMAN_ROOT_PATH/m3u ]; then
mkdir -p $PIXMAN_ROOT_PATH/m3u
fi
cp -rf ./m3u/* $PIXMAN_ROOT_PATH/m3u/
echo "Check Finish."
else
echo "Error: .env file not found."
fi