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-04-11 21:46:10 +00:00
commit 3521bc9536
1 changed files with 1 additions and 1 deletions

View File

@ -1070,7 +1070,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: