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 c7acdca commit 71a288dCopy full SHA for 71a288d
Tools/scripts/patchcheck.py
@@ -130,6 +130,8 @@ def changed_files(base_branch=None):
130
with subprocess.Popen(cmd.split(),
131
stdout=subprocess.PIPE,
132
cwd=SRCDIR) as st:
133
+ if st.wait() != 0:
134
+ sys.exit(f'error running {cmd}')
135
for line in st.stdout:
136
line = line.decode().rstrip()
137
status_text, filename = line.split(maxsplit=1)
0 commit comments