wrap: Redirect stdin to DEVNULL (again)

Same fix as e7b25018c4, was accidentally
missed when this code was rewritten.
pull/6260/head
Nirbheek Chauhan 5 years ago committed by Nirbheek Chauhan
parent 575a2c34f8
commit 1cb680388d
  1. 4
      mesonbuild/msubprojects.py

@ -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…
Cancel
Save