mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Just get rid of bin/ and gen/ rather than failing scans
This commit is contained in:
parent
9d6f5bf887
commit
d38317f8be
16
common.py
16
common.py
@ -825,6 +825,13 @@ def prepare_source(vcs, app, build, build_dir, extlib_dir, sdk_path, ndk_path, j
|
|||||||
if basesrclib:
|
if basesrclib:
|
||||||
srclibpaths.append(basesrclib)
|
srclibpaths.append(basesrclib)
|
||||||
|
|
||||||
|
# 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')
|
||||||
|
if os.path.exists(badpath):
|
||||||
|
shutil.rmtree(badpath)
|
||||||
|
|
||||||
# Run a pre-build command if one is required...
|
# Run a pre-build command if one is required...
|
||||||
if build.has_key('prebuild'):
|
if build.has_key('prebuild'):
|
||||||
prebuild = build['prebuild']
|
prebuild = build['prebuild']
|
||||||
@ -954,15 +961,6 @@ def scan_source(build_dir, root_dir, thisbuild):
|
|||||||
msg = 'Found jni directory, but buildjni is not enabled'
|
msg = 'Found jni directory, but buildjni is not enabled'
|
||||||
problems.append(msg)
|
problems.append(msg)
|
||||||
|
|
||||||
# Presence of these is not a problem as such, but they
|
|
||||||
# shouldn't be there and mess up our source tarballs...
|
|
||||||
if os.path.exists(os.path.join(root_dir, 'bin')):
|
|
||||||
msg = "There shouldn't be a bin directory"
|
|
||||||
problems.append(msg)
|
|
||||||
if os.path.exists(os.path.join(root_dir, 'gen')):
|
|
||||||
msg = "There shouldn't be a gen directory"
|
|
||||||
problems.append(msg)
|
|
||||||
|
|
||||||
return problems
|
return problems
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user