Fix select iOS version issue A7 (fixes #179)

This commit is contained in:
LukeZGD 2022-05-31 08:14:24 +08:00
parent 3c6a500ad7
commit 0518314aac

View File

@ -285,14 +285,14 @@ Main() {
} }
SelectVersion() { SelectVersion() {
if [[ $Mode == "Downgrade"* ]]; then if [[ $DeviceProc == 7 ]]; then
:
elif [[ $Mode == "kDFU" || $Mode == *"4" ]]; then
return
elif [[ $ProductType == "iPad4"* || $ProductType == "iPhone6"* ]]; then
OSVer="10.3.3" OSVer="10.3.3"
BuildVer="14G60" BuildVer="14G60"
return return
elif [[ $Mode == "Downgrade"* ]]; then
:
elif [[ $Mode == "kDFU" || $Mode == *"4" ]]; then
return
fi fi
if [[ $ProductType == "iPhone5,3" || $ProductType == "iPhone5,4" || $ProductType == "iPhone3"* ]]; then if [[ $ProductType == "iPhone5,3" || $ProductType == "iPhone5,4" || $ProductType == "iPhone3"* ]]; then