mirror of
https://github.com/LukeZGD/Legacy-iOS-Kit.git
synced 2024-11-23 16:39:17 +01:00
Add Internet connection check
This commit is contained in:
parent
3d6dfb0999
commit
3f60477e35
@ -99,7 +99,7 @@ function SaveOTABlobs {
|
|||||||
curl -L -# "https://api.ipsw.me/v2.1/ota.json/condensed" -o "ota.json"
|
curl -L -# "https://api.ipsw.me/v2.1/ota.json/condensed" -o "ota.json"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo 'Copying ota.json to tmp...'
|
echo "Copying ota.json to tmp..."
|
||||||
if [ $platform == macos ]; then
|
if [ $platform == macos ]; then
|
||||||
cp ota.json $TMPDIR
|
cp ota.json $TMPDIR
|
||||||
else
|
else
|
||||||
@ -361,7 +361,7 @@ function Ubuntu1804 {
|
|||||||
ar x libcurl3* data.tar.xz
|
ar x libcurl3* data.tar.xz
|
||||||
tar xf data.tar.xz
|
tar xf data.tar.xz
|
||||||
sudo cp usr/lib/${mtype}-linux-gnu/libcurl.so.4.* /usr/lib/libcurl.so.3
|
sudo cp usr/lib/${mtype}-linux-gnu/libcurl.so.4.* /usr/lib/libcurl.so.3
|
||||||
curl -L -# http://mirrors.edge.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-0_1.2.54-1ubuntu1.1_${mtype}.deb -o libpng12.deb
|
curl -L http://mirrors.edge.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-0_1.2.54-1ubuntu1.1_${mtype}.deb -o libpng12.deb
|
||||||
sudo dpkg -i libpng12.deb
|
sudo dpkg -i libpng12.deb
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf tmp
|
rm -rf tmp
|
||||||
@ -384,6 +384,11 @@ else
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ ! $(ping -c1 google.com 2>/dev/null) ]]; then
|
||||||
|
echo "Please check your Internet connection before proceeding"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
HardwareModel=$(ideviceinfo -s | grep 'HardwareModel' | cut -c 16-)
|
HardwareModel=$(ideviceinfo -s | grep 'HardwareModel' | cut -c 16-)
|
||||||
HardwareModelLower=$(echo $HardwareModel | tr '[:upper:]' '[:lower:]' | sed 's/.\{2\}$//')
|
HardwareModelLower=$(echo $HardwareModel | tr '[:upper:]' '[:lower:]' | sed 's/.\{2\}$//')
|
||||||
ProductType=$(ideviceinfo -s | grep 'ProductType' | cut -c 14-)
|
ProductType=$(ideviceinfo -s | grep 'ProductType' | cut -c 14-)
|
||||||
|
Loading…
Reference in New Issue
Block a user