diff options
Diffstat (limited to 'scripts/ios')
-rw-r--r-- | scripts/ios/before_install.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/scripts/ios/before_install.sh b/scripts/ios/before_install.sh index 51348796d..faf2e89c0 100644 --- a/scripts/ios/before_install.sh +++ b/scripts/ios/before_install.sh @@ -30,13 +30,15 @@ popd pushd ${TRAVIS_BUILD_DIR}/.. echo "Get custom Qt build and unpack it" -curl --output ./Qt5.10.1-iOS.tar.xz \ - https://storage.googleapis.com/travis-cache/Qt5.10.1-iOS.tar.xz -tar xJf Qt5.10.1-iOS.tar.xz +curl --output ./Qt-5.11.1-ios.tar.xz \ + https://storage.googleapis.com/travis-cache/Qt-5.11.1-ios.tar.xz +md5 ./Qt-5.11.1-ios.tar.xz -# our scripts assume that there are two convenience links - arguably this -# should be fixed in the scripts, but... -ln -s Qt5.10.1 Qt +mkdir -p Qt/5.11.1 + +tar -xJ -C Qt/5.11.1 -f Qt-5.11.1-ios.tar.xz + +# our scripts assume that there is a convenience link cd subsurface/packaging/ios ln -s ${TRAVIS_BUILD_DIR}/../Qt Qt |