mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-06 01:11:07 +03:00
Detect .gitmodules and add submodules build line
This commit is contained in:
parent
294799e2f5
commit
72fde0f10b
1 changed files with 4 additions and 0 deletions
|
@ -191,6 +191,10 @@ def main():
|
|||
'$$flutter$$/bin/flutter build apk',
|
||||
]
|
||||
|
||||
git_modules = os.path.join(tmp_importer_dir, '.gitmodules')
|
||||
if os.path.exists(git_modules):
|
||||
build.submodules = True
|
||||
|
||||
metadata.post_metadata_parse(app)
|
||||
|
||||
app.builds.append(build)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue