mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Remove bin/ and gen/ in update= dirs too!
This commit is contained in:
parent
e6fe2d7d53
commit
f6554d846c
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue