mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix apk path on gradle builds with many subdirs
This commit is contained in:
parent
a520076331
commit
5c483a5484
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue