We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfddaa0 commit d5dce71Copy full SHA for d5dce71
1 file changed
sdk-platform-java/hermetic_build/library_generation/utils/utilities.py
@@ -68,7 +68,7 @@ def run_process_and_print_output(
68
kwargs["stderr"] = subprocess.STDOUT
69
proc_info = subprocess.run(arguments, stdout=subprocess.PIPE, **kwargs)
70
print(proc_info.stdout.decode(), end="", flush=True)
71
- # If stderr was not specified and the process failed, print the error output
+ # If stderr was not specified and the process failed, print the error output
72
if proc_info.returncode != 0 and proc_info.stderr:
73
print(proc_info.stderr.decode(), end="", flush=True)
74
print(
0 commit comments