1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +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,7 +7472,6 @@ namespace IDE
{ {
startInfo.RedirectStandardOutput = true; startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true; startInfo.RedirectStandardError = true;
if (stdInData != null)
startInfo.RedirectStandardInput = true; startInfo.RedirectStandardInput = true;
startInfo.CreateNoWindow = true; startInfo.CreateNoWindow = true;
} }