From 394dec5bae897a7f3035964e658dca1fe586a286 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Mon, 1 Jun 2020 08:40:15 -0700 Subject: [PATCH] Fixed xcopy issue with input redirection --- IDE/src/IDEApp.bf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 2eeb5c84..48c1742c 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -7472,8 +7472,7 @@ namespace IDE { startInfo.RedirectStandardOutput = true; startInfo.RedirectStandardError = true; - if (stdInData != null) - startInfo.RedirectStandardInput = true; + startInfo.RedirectStandardInput = true; startInfo.CreateNoWindow = true; }