chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbe0d1e
)
Try and feed the right gradle apk
author
Daniel Martí
<mvdan@mvdan.cc>
Sat, 3 Aug 2013 15:45:11 +0000
(17:45 +0200)
committer
Daniel Martí
<mvdan@mvdan.cc>
Sat, 3 Aug 2013 15:45:11 +0000
(17:45 +0200)
fdroidserver/build.py
patch
|
blob
|
history
diff --git
a/fdroidserver/build.py
b/fdroidserver/build.py
index 0161c03c403b9f6b4a115870051c93fceb91148a..7090623bc7cc81bc95dce97fb408b0aa42d688d3 100644
(file)
--- a/
fdroidserver/build.py
+++ b/
fdroidserver/build.py
@@
-467,6
+467,8
@@
def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
raise BuildException('Failed to find output')
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')
else:
src = re.match(r".*^.*Creating (.+) for release.*$.*", output,
re.S|re.M).group(1)