Merge pull request #527 from mendsley/removeextravar

Remove extra argument to os.match
This commit is contained in:
Tom van Dijck 2016-06-30 14:54:15 -07:00 committed by GitHub
commit ab1b4edcb7

View File

@ -274,7 +274,7 @@
while os.matchnext(m) do
if not os.matchisfile(m) then
local matchpath = path.join(before, os.matchname(m), mask:sub(starpos))
results = table.join(results, os.match(matchpath, after))
results = table.join(results, os.match(matchpath))
end
end
os.matchdone(m)