From 946b69941c29de427260938c85a7b592e283125a Mon Sep 17 00:00:00 2001 From: ALittlePatate Date: Sat, 18 Jan 2025 18:53:30 +0100 Subject: [PATCH] fix: using choco make now --- Server/BuildMenu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/BuildMenu.cs b/Server/BuildMenu.cs index c665a86..c7397fc 100644 --- a/Server/BuildMenu.cs +++ b/Server/BuildMenu.cs @@ -353,7 +353,7 @@ void api_{functionName}(void) {{ System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; startInfo.FileName = "cmd"; - startInfo.Arguments = "/C cd ../Laika/ && mingw32-make fclean && mingw32-make"; + startInfo.Arguments = "/C cd ../Laika/ && make fclean && make"; startInfo.RedirectStandardOutput = true; startInfo.UseShellExecute = false; startInfo.CreateNoWindow = true;