Skip to content

Commit

Permalink
fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
actboy168 committed May 11, 2024
1 parent 3da04ab commit b4fda4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compile/bootstrap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ if not lm.notest then
local tests = {}
local fs = require "bee.filesystem"
local rootdir = fs.path(lm.workdir)
for file in fs.pairs(rootdir / "test", "r") do
for file in fs.pairs_r(rootdir / "test") do
if file:extension() == ".lua" then
tests[#tests+1] = fs.relative(file, rootdir):lexically_normal():string()
end
Expand Down

0 comments on commit b4fda4e

Please sign in to comment.