Skip to content

Commit 9f59d3b

Browse files
committed
Changed ios_system to tar.gz
1 parent 62396e9 commit 9f59d3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

get_frameworks.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LIBSSH2_VER="1.7.0"
44
OPENSSL_VER="1.0.2j"
55
LIBMOSH_VER="1.2.5-8671e87"
66
PROTOBF_VER="2.6.1"
7-
IOS_SYSTEM_VER="0.1"
7+
IOS_SYSTEM_VER="0.2"
88

99
GHROOT="https://github.com/blinksh"
1010
HHROOT="https://github.com/holzschu"
@@ -28,8 +28,8 @@ curl -OL $GHROOT/build-protobuf/releases/download/$PROTOBF_VER/protobuf-$PROTOBF
2828
( tar -zxf protobuf-*.tar.gz && cp protobuf-*/lib/libprotobuf.a ./lib/ && rm -rf protobuf-* ) || { echo "Protobuf framework failed to download"; exit 1; }
2929
# ios_system
3030
echo "Downloading ios_system.framework.zip"
31-
curl -OL $HHROOT/blink/releases/download/v$IOS_SYSTEM_VER/ios_system.framework.zip
32-
( unzip ios_system.framework.zip && rm ios_system.framework.zip ) || { echo "ios_system failed to download"; exit 1; }
31+
curl -OL $HHROOT/blink/releases/download/v$IOS_SYSTEM_VER/ios_system.framework.tar.gz
32+
( tar -xzf ios_system.framework.tar.gz && rm ios_system.framework.tar.gz ) || { echo "ios_system failed to download"; exit 1; }
3333
)
3434

3535
# We need ios_system for the sources of curl_static too:

0 commit comments

Comments
 (0)