1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed xcopy issue with input redirection

This commit is contained in:
Brian Fiete 2020-06-01 08:40:15 -07:00
parent fa7792650c
commit 394dec5bae

View file

@ -7472,8 +7472,7 @@ namespace IDE
{
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
if (stdInData != null)
startInfo.RedirectStandardInput = true;
startInfo.RedirectStandardInput = true;
startInfo.CreateNoWindow = true;
}