We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f4566 commit b320dabCopy full SHA for b320dab
tools/fuchsia/gen_package.py
@@ -92,15 +92,15 @@ def main():
92
93
# Build the package
94
try:
95
- subprocess.check_call(pm_command_base + ['build'])
+ output = subprocess.check_output(pm_command_base + ['build'])
96
except subprocess.CalledProcessError as e:
97
print('The "%s" command failed:' % e.cmd)
98
print(e.output)
99
raise
100
101
# Archive the package
102
103
- subprocess.check_call(pm_command_base + ['archive'])
+ output = subprocess.check_output(pm_command_base + ['archive'])
104
105
106
0 commit comments