Closed Vorlias closed 4 years ago
When running remodel run in 0.7.0, the first argument passed to the script is completely discarded.
remodel run
Example repro:
remodel run test.lua ONE TWO THREE
Where test.lua is:
local args = { ... } for i, v in pairs(args) do print(i, v) end
Will output:
1 TWO 2 THREE
The expected output should be
1 ONE 2 TWO 3 THREE
When running
remodel run
in 0.7.0, the first argument passed to the script is completely discarded.Example repro:
remodel run test.lua ONE TWO THREE
Where test.lua is:
Will output:
The expected output should be