Gen package output corrected (flutter/engine#13086)

This commit is contained in:
Dan Field 2019-10-11 10:16:43 -07:00 committed by GitHub
parent 43bf271065
commit 74ae2204a9

View File

@ -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)