1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

buildserver: android --silent hides errors, so remove

--silent seem to prevent `android update sdk` from exiting with an error,
so its kind of useless.  I just wanted it to suppress the verbose logs.
This commit is contained in:
Hans-Christoph Steiner 2016-06-21 18:12:09 +02:00
parent 2227cc6d1a
commit 588e6e5534

View File

@ -23,7 +23,7 @@ fi
cd /vagrant/cache
# make hard links for `android update sdk` to use and delete
# make links for `android update sdk` to use and delete
for f in android_*.zip android-[0-9]*.zip platform-[0-9]*.zip build-tools_r*-linux.zip; do
rm -f ${ANDROID_HOME}/temp/$f
ln -s /vagrant/cache/$f ${ANDROID_HOME}/temp/
@ -42,7 +42,7 @@ for f in `ls -1 build-tools*.zip`; do
cached=,build-tools-${ver}${cached}
done
${ANDROID_HOME}/tools/android --silent update sdk --no-ui --all \
${ANDROID_HOME}/tools/android update sdk --no-ui --all \
--filter platform-tools,extra-android-m2repository${cached} > /dev/null <<EOH
y