diff --git a/scripts/command/shell.lua b/scripts/command/shell.lua index 5d73ec0..190c4e4 100644 --- a/scripts/command/shell.lua +++ b/scripts/command/shell.lua @@ -1,7 +1,10 @@ local action = require "action" action.init() -local code = action.execute { table.unpack(arg, 2) } +local code = action.execute { + stdout = io.stdout, + table.unpack(arg, 2) +} if code ~= 0 then os.exit(code) end