1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Merge branch 'master' into 'master'

Don't pass root_dir to scan_source

See merge request !276
This commit is contained in:
Hans-Christoph Steiner 2017-05-25 18:49:14 +00:00
commit 5a90443b0b

View File

@ -494,7 +494,7 @@ def build_local(app, build, vcs, build_dir, output_dir, log_dir, srclib_dir, ext
else:
# Scan before building...
logging.info("Scanning source for common problems...")
count = scanner.scan_source(build_dir, root_dir, build)
count = scanner.scan_source(build_dir, build)
if count > 0:
if force:
logging.warn('Scanner found %d problems' % count)