Skip to content

Commit b908a0c

Browse files
committed
pw-brancher: don't fail if cidiff crashed
cidiff is a bit buggy, it will probably fail during the merge window. Let's avoid missing branches for something that can be re-run manually. Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 8f2a4b9 commit b908a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pw_brancher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def generate_deltas(config, tree, name):
234234
# pub_url is for git, so it most likely ends with ".git"
235235
pub_url = config.get('target', 'public_url')[:-4]
236236
subprocess.run([cidiff, name, '-H', '-o', outfile, '-g', pub_url],
237-
cwd=tree.path, check=True)
237+
cwd=tree.path, check=False)
238238

239239

240240
def get_change_from_last(tree, branch_list) -> bool:

0 commit comments

Comments
 (0)