We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca15803 commit f85c3beCopy full SHA for f85c3be
build/gn_run_binary.py
@@ -22,5 +22,7 @@
22
try:
23
subprocess.check_output(args, stderr=subprocess.STDOUT)
24
except subprocess.CalledProcessError as ex:
25
+ print("Command failed: " + ' '.join(args))
26
+ print("exitCode: " + str(ex.returncode))
27
print(ex.output.decode('utf-8', errors='replace'))
28
sys.exit(ex.returncode)
0 commit comments