Suppress unzip logs in Ubuntu image generation (#3068)

This commit is contained in:
Aleksandr Chebotov
2021-03-31 16:07:25 +03:00
committed by GitHub
parent 1572c20af1
commit 05fc867e8a
5 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ mkdir -p ${ANDROID_SDK_ROOT}
# Download the latest command line tools so that we can accept all of the licenses.
# See https://developer.android.com/studio/#command-tools
wget -O android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
unzip android-sdk.zip -d ${ANDROID_SDK_ROOT}
unzip -qq android-sdk.zip -d ${ANDROID_SDK_ROOT}
rm -f android-sdk.zip
if isUbuntu20 ; then