Merge branch 'fix-plugin-clone' of https://github.com/nothingTVatYT/FlaxEngine into nothingTVatYT-fix-plugin-clone

This commit is contained in:
Wojtek Figat
2023-12-11 19:51:10 +01:00

View File

@@ -381,6 +381,7 @@ namespace FlaxEditor.Windows
Arguments = $"clone {gitPath} \"{clonePath}\"", Arguments = $"clone {gitPath} \"{clonePath}\"",
ShellExecute = false, ShellExecute = false,
LogOutput = true, LogOutput = true,
WaitForEnd = true
}; };
Platform.CreateProcess(ref settings); Platform.CreateProcess(ref settings);
} }
@@ -402,6 +403,7 @@ namespace FlaxEditor.Windows
Arguments = "submodule update --init", Arguments = "submodule update --init",
ShellExecute = false, ShellExecute = false,
LogOutput = true, LogOutput = true,
WaitForEnd = true
}; };
Platform.CreateProcess(ref settings); Platform.CreateProcess(ref settings);
} }