lualoader: Return meaningful value in cli_execute

loader.command(...) will return whatever the executed function returns, so
follow suit and return whatever loader.command() returned or whatever the
Lua function returns.
This commit is contained in:
Kyle Evans 2018-03-04 03:21:12 +00:00
parent 982a973ebe
commit c6d9f133b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330369

View File

@ -77,8 +77,7 @@ function cli_execute(...)
local argv = {...}
-- Just in case...
if #argv == 0 then
loader.command(...)
return
return loader.command(...)
end
local cmd_name = argv[1]
@ -88,9 +87,9 @@ function cli_execute(...)
-- traditional reasons for including it don't necessarily apply,
-- it may not be totally redundant if we want to have one global
-- handling multiple commands
cmd(...)
return cmd(...)
else
loader.command(...)
return loader.command(...)
end
end