From: Daniel Martí Date: Sat, 20 Apr 2013 21:22:10 +0000 (+0200) Subject: Try and fix maven signing issues X-Git-Tag: 0.1~639 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=96ee85bc867d60a407ead16431597c1645bc4eed;p=fdroidserver.git Try and fix maven signing issues --- diff --git a/fdroidserver/build.py b/fdroidserver/build.py index f505171b..88e22a63 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -340,9 +340,9 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, extlib_dir, tmp_dir, if 'maven' in thisbuild: mvncmd = [mvn3, 'clean', 'package', '-Dandroid.sdk.path=' + sdk_path] if install: - mvncmd.append('-Dandroid.sign.debug=true') + mvncmd += ['-Dandroid.sign.debug=true'] else: - mvncmd.append('-Dandroid.release=true') + mvncmd += ['-Dandroid.sign.debug=false', '-Dandroid.release=true'] if 'mvnflags' in thisbuild: mvncmd += thisbuild['mvnflags'] p = subprocess.Popen(mvncmd, cwd=root_dir, stdout=subprocess.PIPE, stderr=subprocess.PIPE)