wrap: Redirect stdin to DEVNULL (again)
Same fix as e7b25018c4
, was accidentally
missed when this code was rewritten.
This commit is contained in:
parent
575a2c34f8
commit
1cb680388d
|
@ -41,6 +41,10 @@ def update_file(wrap, repo_dir, options):
|
||||||
|
|
||||||
def git(cmd, workingdir):
|
def git(cmd, workingdir):
|
||||||
return subprocess.check_output(['git', '-C', workingdir] + cmd,
|
return subprocess.check_output(['git', '-C', workingdir] + cmd,
|
||||||
|
# Redirect stdin to DEVNULL otherwise git
|
||||||
|
# messes up the console and ANSI colors stop
|
||||||
|
# working on Windows.
|
||||||
|
stdin=subprocess.DEVNULL,
|
||||||
stderr=subprocess.STDOUT).decode()
|
stderr=subprocess.STDOUT).decode()
|
||||||
|
|
||||||
def git_show(repo_dir):
|
def git_show(repo_dir):
|
||||||
|
|
Loading…
Reference in New Issue