Raise exception when encountered

This commit is contained in:
erik 2023-07-12 15:43:16 +02:00
parent cf091b64e3
commit 15544e0ba0

View file

@ -121,6 +121,7 @@ class ExecutionApi:
text=True)
except CalledProcessError as exc:
print("Command failed with code: ", exc.returncode, " and message:", exc.stderr)
raise CalledProcessError
class EnvironmentApi: