mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Proper apk path for gradle
This commit is contained in:
parent
89a9447a8c
commit
7d1f2b68b9
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
|||
src = m.group(1)
|
||||
src = os.path.join(bindir, src) + '.apk'
|
||||
elif 'gradle' in thisbuild:
|
||||
src = os.path.join('build', 'apk', '-'.join([app['Auto Name'], flavour, 'release', 'unsigned')+'.apk'])
|
||||
src = os.path.join(build_dir, 'build', 'apk', '-'.join([app['id'], flavour, 'release', 'unsigned'])+'.apk')
|
||||
else:
|
||||
src = re.match(r".*^.*Creating (.+) for release.*$.*", output,
|
||||
re.S|re.M).group(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue