mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
nightly: search subdirs called 'fdroid' for APKs
@MTRNord tracked down this bug while working on his app https://gitlab.com/Nordgedanken/simplematrix
This commit is contained in:
parent
daff6658c0
commit
548f73d988
1 changed files with 2 additions and 2 deletions
|
@ -249,8 +249,8 @@ Last updated: {date}'''.format(repo_git_base=repo_git_base,
|
|||
common.assert_config_keystore(config)
|
||||
|
||||
for root, dirs, files in os.walk(cibase):
|
||||
for d in ('fdroid', '.git', '.gradle'):
|
||||
if d in dirs:
|
||||
for d in dirs:
|
||||
if d == '.git' or d == '.gradle' or (d == 'fdroid' and root == cibase):
|
||||
dirs.remove(d)
|
||||
for f in files:
|
||||
if f.endswith('-debug.apk'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue