From 0df00fd88127034eb94b3efa0efdce4d27fda338 Mon Sep 17 00:00:00 2001 From: nothingTVatYT Date: Mon, 11 Dec 2023 04:14:17 +0100 Subject: [PATCH] wait for git processes to end --- Source/Editor/Windows/PluginsWindow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Editor/Windows/PluginsWindow.cs b/Source/Editor/Windows/PluginsWindow.cs index f43fb0342..eb04f07b8 100644 --- a/Source/Editor/Windows/PluginsWindow.cs +++ b/Source/Editor/Windows/PluginsWindow.cs @@ -381,6 +381,7 @@ namespace FlaxEditor.Windows Arguments = $"clone {gitPath} \"{clonePath}\"", ShellExecute = false, LogOutput = true, + WaitForEnd = true }; Platform.CreateProcess(ref settings); } @@ -402,6 +403,7 @@ namespace FlaxEditor.Windows Arguments = "submodule update --init", ShellExecute = false, LogOutput = true, + WaitForEnd = true }; Platform.CreateProcess(ref settings); }