mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
buildserver: suppress unzip file list when unpacking SDK/NDK
Just too much pointless info in the log.
This commit is contained in:
parent
323ad5e0ad
commit
ecab81d69d
2 changed files with 3 additions and 3 deletions
|
@ -17,8 +17,8 @@ if [ ! -e $ANDROID_NDK_HOME/r9b ]; then
|
||||||
else
|
else
|
||||||
SUFFIX=''
|
SUFFIX=''
|
||||||
fi
|
fi
|
||||||
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX.tar.bz2
|
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX.tar.bz2
|
||||||
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX-legacy-toolchains.tar.bz2
|
tar xjf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX-legacy-toolchains.tar.bz2
|
||||||
mv android-ndk-r9b r9b
|
mv android-ndk-r9b r9b
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ for f in `ls -1 build-tools*.zip`; do
|
||||||
done
|
done
|
||||||
|
|
||||||
${ANDROID_HOME}/tools/android --silent update sdk --no-ui --all \
|
${ANDROID_HOME}/tools/android --silent update sdk --no-ui --all \
|
||||||
--filter platform-tools,extra-android-m2repository${cached} <<EOH
|
--filter platform-tools,extra-android-m2repository${cached} > /dev/null <<EOH
|
||||||
y
|
y
|
||||||
|
|
||||||
EOH
|
EOH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue