mirror of
https://github.com/kepler155c/opus
synced 2026-04-29 10:01:27 +00:00
better fuzzy matching + vfs type flag in Files
This commit is contained in:
@@ -52,8 +52,8 @@ local function run(...)
|
||||
loadFn = loadfile
|
||||
end
|
||||
|
||||
local funkshun, err = loadFn(path, env)
|
||||
if not funkshun then
|
||||
local O_v_O, err = loadFn(path, env)
|
||||
if not O_v_O then
|
||||
error(err, -1)
|
||||
end
|
||||
|
||||
@@ -68,7 +68,7 @@ local function run(...)
|
||||
}
|
||||
|
||||
env[ "arg" ] = { [0] = path, table.unpack(args) }
|
||||
local r = { funkshun(table.unpack(args)) }
|
||||
local r = { O_v_O(table.unpack(args)) }
|
||||
|
||||
tProgramStack[#tProgramStack] = nil
|
||||
|
||||
|
||||
Reference in New Issue
Block a user