From 74ae2204a97ca54ca2bf353c1c735344dc69baa5 Mon Sep 17 00:00:00 2001 From: Dan Field Date: Fri, 11 Oct 2019 10:16:43 -0700 Subject: [PATCH] Gen package output corrected (flutter/engine#13086) --- engine/src/flutter/tools/fuchsia/gen_package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/tools/fuchsia/gen_package.py b/engine/src/flutter/tools/fuchsia/gen_package.py index c000a8e6651..f9a2685c0ef 100755 --- a/engine/src/flutter/tools/fuchsia/gen_package.py +++ b/engine/src/flutter/tools/fuchsia/gen_package.py @@ -92,7 +92,7 @@ def main(): # Build the package try: - subprocess.check_call(pm_command_base + ['build']) + output = subprocess.check_output(pm_command_base + ['build']) except subprocess.CalledProcessError as e: print('The "%s" command failed:' % e.cmd) print(e.output) @@ -100,7 +100,7 @@ def main(): # Archive the package try: - subprocess.check_call(pm_command_base + ['archive']) + output = subprocess.check_output(pm_command_base + ['archive']) except subprocess.CalledProcessError as e: print('The "%s" command failed:' % e.cmd) print(e.output)