summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck-style.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/check-style.py b/check-style.py
index ac2ffcaad..a326cd311 100755
--- a/check-style.py
+++ b/check-style.py
@@ -76,6 +76,10 @@ def reformat_chunks(chunks, rewrite):
# uncrustify chunk
proc = subprocess.Popen(["uncrustify", "-c", uncrustify_cfg, "-f", tmp.name], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
+ proc.wait()
+ if proc.returncode != 0:
+ continue
+
reindented = proc.stdout.readlines()
tmp.close()