Skip to content

Commit

Permalink
unimportant
Browse files Browse the repository at this point in the history
  • Loading branch information
capr committed Sep 24, 2018
1 parent 985b0b2 commit 0eec6c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bundle.lua
Expand Up @@ -153,7 +153,9 @@ function bundle.fs_open(file)
end

function bundle.fs_dir(dir)
return fs_dir_file(dir) or fs_dir_blob(dir)
local d, next = fs_dir_file(dir)
if d then return d, next end
return fs_dir_blob(dir)
end

local ok, ver = pcall(require, 'bundle_appversion')
Expand Down

0 comments on commit 0eec6c0

Please sign in to comment.