Sync
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
local path = ...
|
||||
require("nellie.proto")
|
||||
|
||||
function Run(args)
|
||||
function Run(...)
|
||||
-- Take arguments as neli files to read and interpret
|
||||
local root = Chain(
|
||||
string.format(
|
||||
"in cmd 'nelli {%s}'",
|
||||
table.concat(args,";")
|
||||
table.concat({...},";")
|
||||
)
|
||||
)
|
||||
for _,parameter in pairs(args) do
|
||||
for _,parameter in pairs({...}) do
|
||||
local chain = Chain(
|
||||
string.format("in 'call: root' @'%s'",parameter)
|
||||
):from(root)
|
||||
|
||||
Reference in New Issue
Block a user