Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Fix file matching pattern in ensure-tests.luau
Browse files Browse the repository at this point in the history
  • Loading branch information
cxmeel committed Mar 14, 2024
1 parent fb0742c commit a6c49b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lune/ensure-tests.luau
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ local function main()
local missing = 0

for _, file in files do
if not file:match("%.luau$") or table.find(IGNORED_FILES, file) then
if not file:match("%.luau?$") or table.find(IGNORED_FILES, file) then
continue
end

Expand Down

0 comments on commit a6c49b0

Please sign in to comment.