Scrap the stderr->stdout redirect (we don't seem to need it)
Let's keep an eye on this and if we see output outside of the fold groups we can add it back
This commit is contained in:
@@ -22,8 +22,7 @@ def call(args: Union[str, Sequence[Union[str, PathLike]]], env: Optional[Dict[st
|
||||
else:
|
||||
print('+ ' + ' '.join(shlex.quote(str(a)) for a in args))
|
||||
|
||||
# run the process. Subprocess stderr is routed to stdout to keep output interleaved
|
||||
return subprocess.check_call(args, env=env, cwd=cwd, shell=shell, stderr=subprocess.STDOUT)
|
||||
return subprocess.check_call(args, env=env, cwd=cwd, shell=shell)
|
||||
|
||||
|
||||
class PythonConfiguration(NamedTuple):
|
||||
|
||||
Reference in New Issue
Block a user