android-wrapper: Quiet down unzip

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2017-02-06 15:55:36 +01:00 committed by Dirk Hohndel
parent cf5c9d371e
commit b7a1b2dbf6

View file

@ -72,7 +72,7 @@ if [ ! -d $ANDROID_NDK ] ; then
if [ ! -f $NDK_BINARIES ] ; then if [ ! -f $NDK_BINARIES ] ; then
wget -q https://dl.google.com/android/repository/$NDK_BINARIES wget -q https://dl.google.com/android/repository/$NDK_BINARIES
fi fi
unzip $NDK_BINARIES unzip -q $NDK_BINARIES
fi fi
if [ ! -d $ANDROID_SDK ] ; then if [ ! -d $ANDROID_SDK ] ; then
@ -81,7 +81,7 @@ if [ ! -d $ANDROID_SDK ] ; then
fi fi
mkdir $ANDROID_SDK mkdir $ANDROID_SDK
pushd $ANDROID_SDK pushd $ANDROID_SDK
unzip ../$SDK_TOOLS unzip -q ../$SDK_TOOLS
bash tools/android update sdk --no-ui -a -t 1,2,3,33 bash tools/android update sdk --no-ui -a -t 1,2,3,33
popd popd
fi fi