[*] Replace ugly concat with string.format

This commit is contained in:
Reece Wilson 2022-03-04 17:11:29 +00:00
parent 447c8ea15c
commit 45e42e7122

View File

@ -104,7 +104,7 @@ if (string.find(projCfg, "|")) then
projCfg = projCfg:match("([^,]+)|([^,]+)")
end
local targetName = projName .. "." .. projCfg .. "." .. projPlatform .. "." .. projArch
local targetName = string.format("%s.%s.%s.%s", projName, projCfg, projPlatform, projArch)
local fileName = targetName
local platform = Aurora.Platforms[projPlatform]