-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathget-source.sh
executable file
·46 lines (35 loc) · 1.85 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
43
44
45
46
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libplist
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libusbmuxd
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libimobiledevice
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libideviceactivation
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/ideviceinstaller
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libirecovery
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/idevicerestore
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/ios-webkit-debug-proxy
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libimobiledevice-glue
git clone --single-branch --branch msvc/master https://github.com/libimobiledevice-NET/libtatsu
# 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 "libimobiledevice-glue revision:"
git -C libimobiledevice-glue rev-parse HEAD
echo "libtatsu revision:"
git -C libtatsu 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 "ios-webkit-debug-proxy revision:"
git -C ios-webkit-debug-proxy rev-parse HEAD