[Debug] Added place where we use run_command

This commit is contained in:
Salvador E. Tropea 2022-09-27 11:01:44 -03:00
parent db75af4985
commit 9c1d32fac3
1 changed files with 2 additions and 0 deletions

View File

@ -146,6 +146,8 @@ def debug_output(res):
def run_command(command, change_to=None, just_raise=False):
logger.debug('Executing: '+shlex.join(command))
if change_to is not None:
logger.debug('- CWD: '+change_to)
try:
res = run(command, check=True, stdout=PIPE, stderr=STDOUT, cwd=change_to)
except CalledProcessError as e: