V 2,0,0 #7

Merged
Yaya48 merged 42 commits from beta into new 2020-07-30 23:06:26 +02:00
Showing only changes of commit f61845c456 - Show all commits

View File

@ -2,6 +2,11 @@
if [ "$EUID" -ne 0 ]; then if [ "$EUID" -ne 0 ]; then
echo You need to run this script as root. echo You need to run this script as root.
else else
need=""
command -v unzip >/dev/null 2>&1 || need+="unzip "
command -v plutil >/dev/null 2>&1 || need+="com.bingner.plutil "
command -v curl >/dev/null 2>&1 || need+="curl "
command -v curl >/dev/null 2>&1 || need+="wget "
clear clear
echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.0 (Beta4) By @Yaya4_4 on Twitter.\e[0m" echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.0 (Beta4) By @Yaya4_4 on Twitter.\e[0m"
echo "Checking If Is A Clean Install Of Unc0ver..." echo "Checking If Is A Clean Install Of Unc0ver..."
@ -16,11 +21,6 @@ fi
echo "WARNING: I'M NOT RESPONSIBLE IF ANYTHING GOES WRONG" echo "WARNING: I'M NOT RESPONSIBLE IF ANYTHING GOES WRONG"
echo "If you've found any bugs, please create an issue in GitHub." echo "If you've found any bugs, please create an issue in GitHub."
echo "Checking Dependencies" echo "Checking Dependencies"
need=""
command -v unzip >/dev/null 2>&1 || need+="unzip "
command -v plutil >/dev/null 2>&1 || need+="com.bingner.plutil "
command -v curl >/dev/null 2>&1 || need+="curl "
command -v curl >/dev/null 2>&1 || need+="wget "
if [ $need != "" ]; then if [ $need != "" ]; then
echo "Installing Dependencies..." echo "Installing Dependencies..."
apt update apt update