Skip to content

Commit

Permalink
[fix] fix runcmd_nocheck(): stdout was suppressed
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Mar 17, 2022
1 parent c7c6542 commit 85fdceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c4/cmany/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def runcmd_nocheck(cmd, *cmd_args, **run_args):
scmd = shlex_join(cmd)
cwd = os.path.realpath(run_args.get('cwd', os.getcwd()))
logcmd(f'$ cd {cwd} && {scmd}')
sp = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, **run_args)
sp = subprocess.run(cmd, stderr=subprocess.STDOUT, **run_args)
logdbg("finished running command")
return sp

Expand Down

0 comments on commit 85fdceb

Please sign in to comment.