From: Ciaran Gultnieks Date: Wed, 4 Sep 2013 07:18:16 +0000 (+0100) Subject: Fix output changes fixes X-Git-Tag: 0.1~407 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=712be5703dc0cceb025d6e51e3877e3f0f8b42d5;p=fdroidserver.git Fix output changes fixes --- diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 677579ff..10925126 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -490,7 +490,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d if verbose: print "Running %s on %s" % (" ".join(commands), gradle_dir) - p = subprocess.Popen(commands, cwd=gradle_dir, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + p = subprocess.Popen(commands, cwd=gradle_dir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) for line in p.stdout.readlines(): if verbose: # Output directly to console @@ -507,7 +507,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d antcommands += [thisbuild['antcommand']] else: antcommands += ['release'] - p = subprocess.Popen(antcommands, cwd=root_dir, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + p = subprocess.Popen(antcommands, cwd=root_dir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) for line in p.stdout.readlines(): if verbose: # Output directly to console