From 9c1d32fac34e103f5be0f6ab12ceb1d541e52f51 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 27 Sep 2022 11:01:44 -0300 Subject: [PATCH] [Debug] Added place where we use run_command --- kibot/kiplot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kibot/kiplot.py b/kibot/kiplot.py index f5b6c06b..7d6e91a2 100644 --- a/kibot/kiplot.py +++ b/kibot/kiplot.py @@ -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: