mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-18 03:21:12 +08:00
13 lines
176 B
Bash
13 lines
176 B
Bash
#!/bin/bash
|
|
|
|
if [ -f .env ]; then
|
|
source .env
|
|
|
|
cp conf/traccar.xml "${TRACCAR_ROOT_PATH}/traccar.xml"
|
|
|
|
echo "Check Finish."
|
|
|
|
else
|
|
echo "Error: .env file not found."
|
|
fi
|