TOOLS/lua/autoload: fix behavior with network URLs

readdir() fails if the directory is an URL, so just exit instead of
letting the Lua script fail.
This commit is contained in:
wm4 2015-01-03 14:48:33 +01:00 committed by Diogo Franco (Kovensky)
parent f4634e404f
commit 3f85092ffe
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ function find_and_add_entries()
return
end
local files = mputils.readdir(dir, "files")
if files == nil then
return
end
table.sort(files)
if dir == "." then
dir = ""