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

Merge branch 'fix_issue_1006' into 'master'

[import] Fix crash when no Gradle subdir is found

Closes #1006

See merge request fdroid/fdroidserver!1136
This commit is contained in:
Hans-Christoph Steiner 2022-05-26 18:45:54 +00:00
commit 9605d4ecad

View File

@ -194,6 +194,9 @@ def main():
elif subdir:
build.subdir = subdir.as_posix()
build.gradle = ['yes']
else:
# subdir might be None
subdir = Path()
if options.license:
app.License = options.license