We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 190ee8b commit c36e48aCopy full SHA for c36e48a
modules/gmake2/gmake2_workspace.lua
@@ -128,7 +128,7 @@
128
local tr = p.workspace.grouptree(wks)
129
tree.traverse(tr, {
130
onbranch = function(n)
131
- table.insert(groups, n.path)
+ table.insert(groups, p.esc(n.path))
132
end
133
})
134
@@ -146,7 +146,7 @@
146
147
148
149
- local rule = n.path .. ":"
+ local rule = p.esc(n.path) .. ":"
150
local projectTargets = {}
151
local groupTargets = {}
152
for i, c in pairs(n.children)
0 commit comments