1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 09:50:07 +02:00

Need to create build-tools directory when using non-cached install

This commit is contained in:
Ciaran Gultnieks 2013-08-08 10:16:51 +01:00
parent c39ba28c01
commit 77917e93c0

View File

@ -30,6 +30,7 @@ script "add_build_tools" do
code "
if [ -f /vagrant/cache/build-tools/17.0.0.tar.gz ] ; then
echo Installing from cache
mkdir #{sdk_loc}/build-tools
tar -C #{sdk_loc}/build-tools -z -x -f /vagrant/cache/build-tools/17.0.0.tar.gz
else
#{sdk_loc}/tools/android update sdk --no-ui -a -t build-tools-17.0.0 <<X