From c0b5c769e2fb8ce73993dac7c4a4b249b5920130 Mon Sep 17 00:00:00 2001 From: Jack Back Date: Wed, 24 Jan 2024 11:10:44 +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 02e571c..7cfdf40 100644 --- a/premake5.lua +++ b/premake5.lua @@ -310,7 +310,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"] .. "\""}