You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Fix blank command prompts spawning
prevent certain mono actions from displaying empty command prompts.
This commit is contained in:
committed by
Julian Mills
parent
516ec892b4
commit
d606a8eded
@@ -63,6 +63,7 @@ namespace GodotTools.Build
|
||||
startInfo.RedirectStandardOutput = true;
|
||||
startInfo.RedirectStandardError = true;
|
||||
startInfo.UseShellExecute = false;
|
||||
startInfo.CreateNoWindow = true;
|
||||
|
||||
if (UsingMonoMsBuildOnWindows)
|
||||
{
|
||||
|
||||
@@ -184,7 +184,8 @@ namespace GodotTools.Utils
|
||||
{
|
||||
RedirectStandardOutput = true,
|
||||
RedirectStandardError = true,
|
||||
UseShellExecute = false
|
||||
UseShellExecute = false,
|
||||
CreateNoWindow = true
|
||||
};
|
||||
|
||||
using (Process process = Process.Start(startInfo))
|
||||
|
||||
Reference in New Issue
Block a user