You've already forked Tricky-Addon-Update-Target-List
mirror of
https://github.com/KOWX712/Tricky-Addon-Update-Target-List.git
synced 2025-09-06 06:37:09 +00:00
17 lines
446 B
Bash
17 lines
446 B
Bash
TS="/data/adb/tricky_store"
|
|
echo "**********************************************"
|
|
echo "- Staring script..."
|
|
echo " "
|
|
|
|
if [ ! -f "$TS/UpdateTargetList.sh" ]; then
|
|
echo "! Script missing, please install module again"
|
|
echo "**********************************************"
|
|
exit 1
|
|
else
|
|
. "$TS/UpdateTargetList.sh"
|
|
fi
|
|
|
|
echo "**********************************************"
|
|
echo "\(__All set!__)/"
|
|
echo "Exiting in 2 seconds..."
|
|
sleep 2 |