diff options
| -rw-r--r-- | stand/lua/core.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/lua/core.lua b/stand/lua/core.lua index 16825d560094..a796ce8a4cfd 100644 --- a/stand/lua/core.lua +++ b/stand/lua/core.lua @@ -253,7 +253,7 @@ function core.kernelList() end if ftype then - if ftype ~= lfs.DT_DIR then + if ftype ~= lfs.DT_DIR and ftype ~= (lfs.DT_LNK or 10) then goto continue end elseif lfs.attributes(fname, "mode") ~= "directory" then |
