Ignore return code from antsibull_changelog lint.
This commit is contained in:
parent
4c9d9dbb56
commit
26f318d277
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ def main():
|
|||
return
|
||||
|
||||
cmd = [sys.executable, '-m', 'antsibull_changelog', 'lint'] + paths_to_check
|
||||
subprocess.check_call(cmd)
|
||||
subprocess.call(cmd) # ignore the return code, rely on the output instead
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue