grammatical fixes

This commit is contained in:
traffic-lane 2020-08-01 22:33:49 -07:00 committed by GitHub
parent c65a4f7248
commit c4cd8d067a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,18 +7,18 @@ echo -e "\e[31mUncursus 2.0 Migration Part By Yaya4_4 1.0 (Sbtale)\e[0m"
echo "Checking iOS Version"
VER=$(/usr/bin/plutil -key ProductVersion /System/Library/CoreServices/SystemVersion.plist)
if [[ "${VER%.*}" -ge 12 ]] && [[ "${VER%.*}" -lt 13 ]]; then
echo "iOS 12 Dectected Set The CFVER To 1500"
echo "iOS 12 detected, setting the CFVER to 1500"
CFVER=1500
elif [[ "${VER%.*}" -ge 13 ]]; then
echo "iOS 13 Dectected Set The CFVER To 1600"
echo "iOS 13 detected, setting the CFVER to 1600"
CFVER=1600
else
if [[ "${VER%.*.*}" -ge 13 ]]; then
echo "iOS 13 Dectected Set The CFVER To 1600"
echo "iOS 13 detected, setting the CFVER to 1600"
CFVER=1600
else
if [[ "${VER%.*.*}" -ge 12 ]]; then
echo "iOS 12 Dectected Set The CFVER To 1500"
echo "iOS 12 detected, setting the CFVER to 1500"
CFVER=1500
fi
fi
@ -51,5 +51,5 @@ echo "URIs: https://apt.procurs.us/" >> /etc/apt/sources.list.d/procursus.source
echo "Suites: iphoneos-arm64/${CFVER}" >> /etc/apt/sources.list.d/procursus.sources
echo "Components: main" >> /etc/apt/sources.list.d/procursus.sources
echo -e "\e[32mMigration Finished!\e[0m"
echo -e "\e[32mBack To Uncursus Script...\e[0m"
echo -e "\e[32mBack to Uncursus Script...\e[0m"
fi