ignore built DLLs + adjust output path #5

Closed
Auios wants to merge 17 commits from Auios:remove-dlls-from-repo into master
Showing only changes of commit 22f7d00894 - Show all commits

View File

@@ -134,7 +134,7 @@ end
---@diagnostic disable-next-line: duplicate-set-field
function io.lines(fn)
local fi, err, fn2 = io.open(fn, nil, 2)
local fi, err, fn2 = io.open(fn, 'r', 2)
if not fi then error('Error opening file \''..fn2..'\': '..err, 2) end
return fi:lines()
end