Finished installer

Small bugfixes
This commit is contained in:
Robert Jelic
2025-02-23 11:11:22 +01:00
parent 3d7c7aa02a
commit 8e2580c4f6

View File

@@ -25,10 +25,10 @@ end
local function parseFile(filePath)
if filePath:match("LuaLS%.lua$") then return nil end
local file = io.open(filePath, "r")
if not file then return nil end
local content = file:read("*all")
local size = #content
file:close()