From 9155833b32d2bfcf45ec9209a1305804d024f247 Mon Sep 17 00:00:00 2001 From: Joao Paulo Magalhaes Date: Fri, 4 Mar 2022 17:04:11 +0000 Subject: [PATCH] [fix] runcmd: ensure stdout is printed --- src/c4/cmany/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/c4/cmany/util.py b/src/c4/cmany/util.py index 66466b3..50f5b25 100644 --- a/src/c4/cmany/util.py +++ b/src/c4/cmany/util.py @@ -649,6 +649,7 @@ def runcmd_nocheck(cmd, *cmd_args, **run_args): raise Exception("could not understand command") cmd += list(cmd_args) logdbg(f" : cmd={cmd}") + logdbg(f" : run_args={run_args}") scmd = shlex_join(cmd) cwd = os.path.realpath(run_args.get('cwd', os.getcwd())) logcmd(f'$ cd {cwd} && {scmd}')