1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Correction to d38317f

This commit is contained in:
Ciaran Gultnieks 2012-02-19 12:16:41 +00:00
parent 3f5c29c30f
commit d6deb15c0a

View File

@ -826,7 +826,7 @@ def prepare_source(vcs, app, build, build_dir, extlib_dir, sdk_path, ndk_path, j
# There should never be gen or bin directories in the source, so just get
# rid of them...
for baddir in ['gen', 'bin']:
badpath = os.path.join(root_dir, 'gen')
badpath = os.path.join(root_dir, baddir)
if os.path.exists(badpath):
shutil.rmtree(badpath)