Keep the unzip quiet but make sure it doesn't fail silently

This commit is contained in:
Benjamin Deroche 2019-10-28 16:02:57 +01:00
parent 11d49d4f47
commit 947893e79f

View File

@ -18,7 +18,7 @@ export FILENAME=$NDK_VERSION-$HOST_PLATFORM.zip
(cd '/tmp' \
&& wget http://dl.google.com/android/repository/$FILENAME \
&& unzip $FILENAME &> /dev/null ) || exit 1
&& unzip -q $FILENAME) || exit 1
unset FILENAME
function _build_arch {