diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-04-28 15:25:12 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-04-28 15:25:31 -0700 |
| commit | d13a945b5f8924c1416ea2bd72212efdb3bebc20 (patch) | |
| tree | 9b750c94008a49020b8d76a4e0a73fd67e619dac /nomsu.lua | |
| parent | 23022dc88c5a2df0cb3415720a8f3a8c479d6b92 (diff) | |
Removed LFS dependency in favor of just using `find`
Diffstat (limited to 'nomsu.lua')
| -rw-r--r-- | nomsu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ FILE_CACHE = setmetatable({ }, { if not (file) then return nil end - local contents = file:read("a"):sub(1, -1) + local contents = file:read("a") file:close() self[filename] = contents return contents |
