Fix for -e strings not getting executed because Files.walk didn't

respect spoofing.
This commit is contained in:
Bruce Hill 2018-07-26 14:29:23 -07:00
parent ed996ad1b6
commit f434b6b167
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ Files.walk = function(path, flush_cache)
_BROWSE_CACHE = { } _BROWSE_CACHE = { }
end end
local files local files
if path == 'stdin' then if path == 'stdin' or _SPOOFED_FILES[path] then
files = { files = {
path path
} }

View File

@ -103,7 +103,7 @@ Files.walk = (path, flush_cache=false)->
export _BROWSE_CACHE export _BROWSE_CACHE
_BROWSE_CACHE = {} _BROWSE_CACHE = {}
local files local files
if path == 'stdin' if path == 'stdin' or _SPOOFED_FILES[path]
files = {path} files = {path}
else else
for nomsupath in package.nomsupath\gmatch("[^;]+") for nomsupath in package.nomsupath\gmatch("[^;]+")