Skip to content

Commit

Permalink
Fix space handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 committed Apr 22, 2023
1 parent d16a364 commit ac19ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function ninja.generateWorkspace(wks)
key = prj.name .. "_" .. cfg.buildcfg

if cfg.platform ~= nil then key = key .. "_" .. cfg.platform end

key = p.esc(key)
if not cfgs[cfg.buildcfg] then cfgs[cfg.buildcfg] = "" end
cfgs[cfg.buildcfg] = cfgs[cfg.buildcfg] .. key .. " "

Expand Down

0 comments on commit ac19ccc

Please sign in to comment.