From cdbd76c876c7c139ff7877e3fceeb93e3ce775a0 Mon Sep 17 00:00:00 2001 From: Richard de Boer Date: Tue, 30 Aug 2022 21:38:07 +0200 Subject: [PATCH] update: follow symlinks when scanning for fastlane For apps with different build flavours: This way they can e.g. have different descriptions per flavour, but use symlinks to share changelogs, instead of duplicating files. --- fdroidserver/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index b9490a53..1d3403a7 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -954,7 +954,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: