mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03: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:
parent
2227cc6d1a
commit
588e6e5534
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ fi
|
||||||
|
|
||||||
cd /vagrant/cache
|
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
|
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
|
rm -f ${ANDROID_HOME}/temp/$f
|
||||||
ln -s /vagrant/cache/$f ${ANDROID_HOME}/temp/
|
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}
|
cached=,build-tools-${ver}${cached}
|
||||||
done
|
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
|
--filter platform-tools,extra-android-m2repository${cached} > /dev/null <<EOH
|
||||||
y
|
y
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue