Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpplint_clitest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def run_shell_command(cmd: str, args: str, cwd="."):
cwd: from which folder to run.
"""
cmd, args = cmd.split(), args.split()
proc = subprocess.run(cmd + args, cwd=cwd, capture_output=True, check=False)
proc = subprocess.run(cmd + args, cwd=cwd, capture_output=True, check=True)
out, err = proc.stdout, proc.stderr

# Make output system-agnostic, aka support Windows
Expand Down
Loading