Ignore return code from antsibull_changelog lint.

This commit is contained in:
Matt Clay 2020-06-11 18:58:53 -07:00
parent 4c9d9dbb56
commit 26f318d277

View file

@ -38,7 +38,7 @@ def main():
return return
cmd = [sys.executable, '-m', 'antsibull_changelog', 'lint'] + paths_to_check 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__': if __name__ == '__main__':