From 2deb2c340e8c49bc67e14f52c524ee0fdcda3172 Mon Sep 17 00:00:00 2001 From: Jack Back Date: Wed, 24 Jan 2024 11:11:17 +0000 Subject: [PATCH] fix(build): make "build info" compatible with Premake5 installed on the system's PATH --- premake5.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/premake5.lua b/premake5.lua index d502375..a499bf3 100644 --- a/premake5.lua +++ b/premake5.lua @@ -314,7 +314,7 @@ dependson {"tlsdll", "runner"} links {"common"} -prebuildcommands {"pushd %{_MAIN_SCRIPT_DIR}", "tools\\premake5 generate-buildinfo", "popd"} +prebuildcommands {"pushd %{_MAIN_SCRIPT_DIR}", "premake5 generate-buildinfo", "popd"} if _OPTIONS["copy-to"] then postbuildcommands {"copy /y \"$(TargetPath)\" \"" .. _OPTIONS["copy-to"] .. "\""}