Skip to content

Commit fa5bf74

Browse files
committed
fix table concat bug
1 parent f609d32 commit fa5bf74

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

waf.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ elseif PostCheck then
7070
end
7171
for key, val in pairs(args) do
7272
if type(val) == "table" then
73+
if type(val[1]) == "boolean" then
74+
return
75+
end
7376
data=table.concat(val, ", ")
7477
else
7578
data=val

0 commit comments

Comments
 (0)