1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Remove bin/ and gen/ in update= dirs too!

This commit is contained in:
Daniel Martí 2013-08-21 16:20:27 +02:00
parent e6fe2d7d53
commit f6554d846c

View File

@ -1199,6 +1199,12 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, sdk_path,
os.remove(buildxml)
for d in update_dirs:
cwd = os.path.join(root_dir, d)
# Remove gen and bin dirs in libraries
# rid of them...
for baddir in ['gen', 'bin']:
badpath = os.path.join(cwd, baddir)
if os.path.exists(badpath):
shutil.rmtree(badpath)
if verbose:
print "Update of '%s': exec '%s' in '%s'"%\
(d," ".join(parms),cwd)