mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Fix apk path on gradle builds with many subdirs
This commit is contained in:
parent
a520076331
commit
5c483a5484
@ -682,7 +682,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
||||
dd = build_dir
|
||||
if 'subdir' in thisbuild:
|
||||
dd = os.path.join(dd, thisbuild['subdir'])
|
||||
basename = thisbuild['subdir']
|
||||
basename = os.path.basename(thisbuild['subdir'])
|
||||
if '@' in thisbuild['gradle']:
|
||||
dd = os.path.join(dd, thisbuild['gradle'].split('@')[1])
|
||||
basename = app['id']
|
||||
|
Loading…
Reference in New Issue
Block a user