Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
2dengine committed Jan 13, 2025
2 parents f6b84fd + 420dd67 commit 14aab42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scan.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local lfs = require('lfs')
require('sstrict')
local ss = require('sstrict')

local function scan(path)
for file in lfs.dir(path) do
Expand All @@ -11,7 +11,7 @@ local function scan(path)
else
if file:match('%.lua$') then
print(full)
dofile(full)
ss.parseFile(full)
end
end
end
Expand Down

0 comments on commit 14aab42

Please sign in to comment.