mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Fixed raise process code
This commit is contained in:
parent
59b798a115
commit
62a6dcd1e2
1 changed files with 1 additions and 1 deletions
|
@ -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. """
|
||||
|
|
Loading…
Reference in a new issue