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

Don't try reading lines from directories

This commit is contained in:
Daniel Martí 2015-04-17 13:02:47 +02:00
parent d1d257bef4
commit 3f9d6b2947
2 changed files with 6 additions and 0 deletions

View File

@ -434,6 +434,8 @@ def adapt_gradle(build_dir):
if not filename.endswith('.gradle'):
continue
path = os.path.join(root, filename)
if not os.path.isfile(path):
continue
logging.debug("Adapting %s at %s" % (filename, path))
FDroidPopen(['sed', '-i',

View File

@ -1312,6 +1312,8 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
if not filename.endswith('.gradle'):
continue
path = os.path.join(dir_path, filename)
if not os.path.isfile(path):
continue
for line in file(path):
match = version_regex.match(line)
if match:
@ -1588,6 +1590,8 @@ def scan_source(build_dir, root_dir, thisbuild):
warnproblem('unknown compressed or binary file', fd)
elif has_extension(fp, 'java') and os.path.isfile(fp):
if not os.path.isfile(fp):
continue
for line in file(fp):
if 'DexClassLoader' in line:
count += handleproblem('DexClassLoader', fd, fp)