Added New Checker

1) Added one for prevent the script run to linux
2) update the jb one
This commit is contained in:
Yaya4 2020-08-02 05:09:30 +02:00 committed by GitHub
parent 21c4fd7942
commit 035abbdd58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,16 +8,27 @@ 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+="curl "
command -v wget >/dev/null 2>&1 || need+="wget " command -v wget >/dev/null 2>&1 || need+="wget "
clear clear
echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.0 (Stable) By @Yaya4_4 on Twitter.\e[0m" echo -e "\e[31mWelcome to Uncursus Installation Script V2.0.2 (Stable) By @Yaya4_4 on Twitter.\e[0m"
echo "Checking if This Script Is Runned On ARM Darwin"
if [ $(uname) = "Linux" ]; then
if [ $(uname -p) = "x86_64" ]; then
PC=yes
fi
fi
if [[ "${PC}" = yes ]]; then
echo "Use This On SSH Over IP Session Thanks On Your Idevice"
else
echo "ARM Darwin Dectected Running ..."
echo "Checking If Is A Clean Install Of Unc0ver..." echo "Checking If Is A Clean Install Of Unc0ver..."
if [[ -f "/.procursus_strapped" ]]; then if [[ -f "/.installed_unc0ver" ]]; then
echo "Please do not use this on odyssey or on an already uncursus installation.." u0=yes
exit 1 else
fi u0=no
if [[ -f "/.bootstrapped" ]]; then
echo "Please do not use this on checkra1n"
exit 1
fi fi
if [[ "${u0}" = no ]]; then
echo "Use Unc0ver Thanks"
else
echo "Unc0ver Dectected"
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..."
@ -67,3 +78,5 @@ touch /.installed_odyssey
touch /.procursus_strapped touch /.procursus_strapped
sbreload sbreload
fi fi
fi
fi