1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-02 13:26:41 +08:00

16 lines
271 B
Bash

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