mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03: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:
commit
9605d4ecad
1 changed files with 3 additions and 0 deletions
|
|
@ -194,6 +194,9 @@ def main():
|
||||||
elif subdir:
|
elif subdir:
|
||||||
build.subdir = subdir.as_posix()
|
build.subdir = subdir.as_posix()
|
||||||
build.gradle = ['yes']
|
build.gradle = ['yes']
|
||||||
|
else:
|
||||||
|
# subdir might be None
|
||||||
|
subdir = Path()
|
||||||
|
|
||||||
if options.license:
|
if options.license:
|
||||||
app.License = options.license
|
app.License = options.license
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue