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

Correct traversing cibase

Partly revert d9aab228 and fix bug introduced in 548f73d9:
modifying list that is being iterated over
This commit is contained in:
SilentGhost 2024-09-06 15:05:36 +02:00
parent 88a23f3a33
commit 8e89cf511d

View File

@ -438,17 +438,12 @@ Last updated: {date}'''.format(repo_git_base=repo_git_base,
)
for root, dirs, files in os.walk(cibase):
if root.startswith(repo_basedir):
logging.error(
_('Broken dirs.remove(d): {root} is part of {repo_basedir} and should not be scanned').format(
root=root,
repo_basedir=repo_basedir
)
)
continue
for d in dirs:
if d == '.git' or d == '.gradle' or (d == 'fdroid' and root == cibase):
for d in ('.git', '.gradle'):
if d in dirs:
dirs.remove(d)
if root == cibase and 'fdroid' in dirs:
dirs.remove('fdroid')
for f in files:
if f.endswith('-debug.apk'):
apkfilename = os.path.join(root, f)