Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LostbBlizzard committed Oct 19, 2024
1 parent 36d4110 commit d86e18c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ninja.lua
Original file line number Diff line number Diff line change
Expand Up @@ -242,12 +242,12 @@ local function getFileDependencies(cfg)
end
for i = 1, #cfg.dependson do

local dependposfix = ""
local dependpostfix = ""
if cfg.platform then
dependposfix = "_" .. cfg.platform
dependpostfix = "_" .. cfg.platform
end

table.insert(dependencies, cfg.dependson[i] .. "_" .. cfg.buildcfg .. dependposfix)
table.insert(dependencies, cfg.dependson[i] .. "_" .. cfg.buildcfg .. dependpostfix)
end
return dependencies
end
Expand Down

0 comments on commit d86e18c

Please sign in to comment.