Skip to content

Commit 3fb1864

Browse files
vladakVladimir Kotal
authored andcommitted
do not treat deliberate command sequence break as error
1 parent 313e9cc commit 3fb1864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/sync/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def check(self, ignore_errors):
128128
format(self.name))
129129
return
130130

131-
if any(rv != 0 for rv in self.retcodes.values()):
131+
if any(rv != 0 and rv != 2 for rv in self.retcodes.values()):
132132
self.logger.error("processing of {} failed".
133133
format(self))
134134
indent = " "

0 commit comments

Comments
 (0)