mirror of
https://github.com/Evil0ctal/Douyin_TikTok_Download_API.git
synced 2025-04-22 08:20:54 +08:00
16 lines
449 B
Bash
16 lines
449 B
Bash
#!/bin/bash
|
|
|
|
read -r -p "Do you want to update Douyin_TikTok_Download_API? [y/n] " input
|
|
case $input in
|
|
[yY])
|
|
cd ..
|
|
git pull
|
|
echo "Restarting Douyin_TikTok_Download_API service"
|
|
systemctl restart Douyin_TikTok_Download_API.service
|
|
echo "Successfully restarted all services!"
|
|
;;
|
|
[nN]| *)
|
|
echo "Exiting..."
|
|
exit 1
|
|
;;
|
|
esac |