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

scanner: fix options handling

closes fdroid/fdroidserver#789
This commit is contained in:
Marcus Hoffmann 2020-06-11 11:43:27 +02:00
parent 0e025e2ae9
commit 294799e2f5

View File

@ -176,9 +176,9 @@ def scan_source(build_dir, build=metadata.Build()):
return removeproblem(what, path_in_build_dir, filepath)
if 'src/test' in filepath or '/test/' in filepath:
return warnproblem(what, path_in_build_dir)
if options and options.json:
if options and 'json' in vars(options) and options.json:
json_per_build['errors'].append([what, path_in_build_dir])
if options and (options.verbose or not options.json):
if options and (options.verbose or not ('json' in vars(options) and options.json)):
logging.error('Found %s at %s' % (what, path_in_build_dir))
return 1