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 a4c8303 commit 4c4e34bCopy full SHA for 4c4e34b
scripts/print_exported_headers.py
@@ -24,7 +24,7 @@ def run(command: List[str]) -> str:
24
"""Run subprocess and return its output."""
25
try:
26
result = subprocess.run(command, capture_output=True, check=True, cwd=BUCK_CWD)
27
- except CalledProcessError as ex:
+ except subprocess.CalledProcessError as ex:
28
print(f"Subprocess failed. stdout: {ex.stdout}\nstderr: {ex.stderr}")
29
raise
30
return result.stdout.decode()
0 commit comments