Add execute_handled

merge-requests/17/head
erik 12 months ago committed by Michael Jerger
parent 9c44bebd5d
commit 8b11a4fa61

@ -1,4 +1,4 @@
from subprocess import Popen, PIPE, run
from subprocess import Popen, PIPE, run, CalledProcessError
from pathlib import Path
from sys import stdout
from os import chmod, environ
@ -101,7 +101,7 @@ class ExecutionApi:
output = output.rstrip()
return output
def execute_live(self, command, dry_run=False, shell=True):
def execute_live(self, command: str, dry_run=False, shell=True):
if dry_run:
print(command)
else:
@ -111,6 +111,21 @@ class ExecutionApi:
process.stdout.close()
process.wait()
def execute_handled(self, command: str, dry_run=False, shell=True, check=True):
if dry_run:
print(command)
else:
try:
run(
command,
shell=shell,
check=check,
stderr=PIPE,
text=True)
except CalledProcessError as exc:
print("Command failed with code: ", exc.returncode, " and message:", exc.stderr)
raise exc
class EnvironmentApi:
def get(self, key):

Loading…
Cancel
Save