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 8c929be commit 57ce526Copy full SHA for 57ce526
tools/generate_flamegraph.py
@@ -49,7 +49,7 @@ def main():
49
bash_command.insert(6, "--native")
50
51
try:
52
- subprocess.check_call(bash_command) # noqa: S603
+ subprocess.run(bash_command, check=True) # noqa: S603
53
except Exception:
54
sys.exit(1)
55
0 commit comments