This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
get-source.sh
executable file
·42 lines (32 loc) · 1.68 KB
/
get-source.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libplist
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libusbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libimobiledevice
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libideviceactivation
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/ideviceinstaller
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/libirecovery
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/idevicerestore
git clone --single-branch --branch master-msvc https://github.com/libimobiledevice-win32/usbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-win32/ios-webkit-debug-proxy
# git -C is not available on CentOS 7
if [ -f /etc/redhat-release ] && [ $(rpm -q --queryformat '%{VERSION}' centos-release) == "7" ]
then
exit 0
fi
echo "libplist revision:"
git -C libplist rev-parse HEAD
echo "libusbmxud revision:"
git -C libusbmuxd rev-parse HEAD
echo "libimobiledevice revision:"
git -C libimobiledevice rev-parse HEAD
echo "libideviceactivation revision:"
git -C libideviceactivation rev-parse HEAD
echo "ideviceinstaller revision:"
git -C ideviceinstaller rev-parse HEAD
echo "libirecovery revision:"
git -C libirecovery rev-parse HEAD
echo "idevicerestore revision:"
git -C idevicerestore rev-parse HEAD
echo "usbmuxd revision:"
git -C usbmuxd rev-parse HEAD
echo "ios-webkit-debug-proxy revision:"
git -C ios-webkit-debug-proxy rev-parse HEAD