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

Merge branch 'follow-fastlane-symlinks' into 'master'

update: follow symlinks when scanning for fastlane

See merge request fdroid/fdroidserver!1177
This commit is contained in:
Richard de Boer 2024-06-09 22:38:14 +00:00
commit ea97797c1e

View File

@ -1150,7 +1150,7 @@ def insert_localized_app_metadata(apps):
for srcd in sorted(sourcedirs):
if not os.path.isdir(srcd):
continue
for root, dirs, files in os.walk(srcd):
for root, dirs, files in os.walk(srcd, followlinks=True):
segments = root.split('/')
packageName = segments[1]
if packageName not in apps: