wait for git processes to end

This commit is contained in:
nothingTVatYT
2023-12-11 04:14:17 +01:00
parent 74b77bfa4c
commit 0df00fd881

View File

@@ -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);
}