-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.sh
52 lines (46 loc) · 1.76 KB
/
update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# Version 1.0.0
# Made By @iitztoasty
RED='\e[1;31m'
GREEN='\e[1;32m'
YELLOW='\e[1;33m'
BLUE='\e[1;34m'
echo " ______ ______ ______ ______ ______ ";
echo " /\__ _\ /\ __ \ /\ __ \ /\ ___\ /\__ _\ ";
echo " \/_/\ \/ \ \ \/\ \ \ \ __ \ \ \___ \ \/_/\ \/ ";
echo " \ \_\ \ \_____\ \ \_\ \_\ \/\_____\ \ \_\ ";
echo " \/_/ \/_____/ \/_/\/_/ \/_____/ \/_/ ";
echo " ";
# Check if the script is run as root
if [[ $EUID -ne 0 ]]; then
echo -e "${RED}[ERROR]\e[0m This script must be run as root."
exit 1
fi
install_dir="/usr/share/toasttool"
# Change to the directory containing the install.sh script
cd $install_dir || { echo -e "${RED}[ERROR]\e[0m Could not change to directory containing install.sh."; exit 1; }
echo -e "${YELLOW}[*] Checking Internet Connection ..${NC}"
echo "";
if curl -s -m 10 https://www.google.com > /dev/null || curl -s -m 10 https://www.github.com > /dev/null; then
echo -e "${GREEN}[✔] Internet connection is OK [✔]${NC}"
echo ""
else
echo -e "${RED}[✘] Please check your internet connection[✘]"
echo ""
exit 1
fi
echo -e "[*]Marking toasttool directory as safe-directory"
git config --global --add safe.directory $install_dir
# Update the repository and the tool itself
echo -e "${BLUE}[INFO]\e[0m Updating repository and tool..."
if ! sudo git pull; then
echo -e "${RED}[ERROR]\e[0m Failed to update repository or tool."
exit 1
fi
# Re-run the installation script
echo -e "${GREEN}[INFO]\e[0m Running installation script..."
if ! sudo bash install.sh; then
echo -e "${RED}[ERROR]\e[0m Failed to run installation script."
exit 1
fi
echo -e "${GREEN}[SUCCESS]\e[0m Tool updated successfully."