mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Gen package output corrected (flutter/engine#13086)
This commit is contained in:
parent
43bf271065
commit
74ae2204a9
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user