[*] Fixes for V8 post build commands
This commit is contained in:
parent
2505140cb3
commit
0ce8e3e9c5
@ -137,9 +137,17 @@ if (projectBins) then
|
||||
binName = string.format("%s.%s.%s.%s", binName, projCfg, projPlatform, projArch)
|
||||
end
|
||||
|
||||
local binSuffx = ""
|
||||
if (args) then
|
||||
binSuffx = " " .. args
|
||||
end
|
||||
|
||||
binName = binName .. extension
|
||||
local cmd = escapeBinaryPath(path.join(projectBins, binName)) .. binSuffx
|
||||
|
||||
if (os.host() == "windows") then
|
||||
cmd = "call " .. cmd
|
||||
end
|
||||
os.exit(os.execute(cmd))
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user