Fixed raise process code

This commit is contained in:
Dimitris Zlatanidis 2023-12-01 12:15:36 +02:00
parent 59b798a115
commit 62a6dcd1e2

View file

@ -172,7 +172,7 @@ class Utilities(Configs):
raise SystemExit(1)
if output.returncode != 0:
raise SystemExit(1)
raise SystemExit(output.returncode)
def header_process_log(self, filename: str) -> None:
""" Creates the build log file and the header. """