Skip to content

Commit

Permalink
fix table concat bug
Browse files Browse the repository at this point in the history
  • Loading branch information
loveshell committed Oct 28, 2015
1 parent f609d32 commit fa5bf74
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions waf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ elseif PostCheck then
end
for key, val in pairs(args) do
if type(val) == "table" then
if type(val[1]) == "boolean" then
return
end
data=table.concat(val, ", ")
else
data=val
Expand Down

0 comments on commit fa5bf74

Please sign in to comment.