diff options
author | Anton Lundin <glance@acc.umu.se> | 2017-02-06 15:55:35 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-02-06 21:12:26 -0800 |
commit | cf5c9d371e3e55a59577bd71cc6c116ed1d753e1 (patch) | |
tree | 7f9aa7dcac88cd8ed4aa9918912b6774a62b721f /packaging | |
parent | 2c160534ebf1087216404bda819e45accd5450c3 (diff) | |
download | subsurface-cf5c9d371e3e55a59577bd71cc6c116ed1d753e1.tar.gz |
android-wrapper: Quiet down wget
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/android/android-build-wrapper.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/android/android-build-wrapper.sh b/packaging/android/android-build-wrapper.sh index 3eadf92bf..60325c874 100644 --- a/packaging/android/android-build-wrapper.sh +++ b/packaging/android/android-build-wrapper.sh @@ -55,7 +55,7 @@ fi QT_DOWNLOAD_URL=https://download.qt.io/archive/qt/${QT_VERSION}/${LATEST_QT}/${QT_BINARIES} if [ ! -d Qt${LATEST_QT} ] ; then if [ ! -f ${QT_BINARIES} ] ; then - wget ${QT_DOWNLOAD_URL} + wget -q ${QT_DOWNLOAD_URL} fi echo "In the binary installer select $(pwd)/${LATEST_QT} as install directory" chmod +x ./${QT_BINARIES} @@ -70,14 +70,14 @@ sed -i 's/set_property(TARGET Qt5::Core PROPERTY INTERFACE_COMPILE_FEATURES cxx_ # next we need to get the Android SDK and NDK if [ ! -d $ANDROID_NDK ] ; then if [ ! -f $NDK_BINARIES ] ; then - wget https://dl.google.com/android/repository/$NDK_BINARIES + wget -q https://dl.google.com/android/repository/$NDK_BINARIES fi unzip $NDK_BINARIES fi if [ ! -d $ANDROID_SDK ] ; then if [ ! -f $SDK_TOOLS ] ; then - wget https://dl.google.com/android/repository/$SDK_TOOLS + wget -q https://dl.google.com/android/repository/$SDK_TOOLS fi mkdir $ANDROID_SDK pushd $ANDROID_SDK |