Browse Source

the shell now prints tables that are returned as a serialized value

pull/1/head
XeonSquared 4 years ago
parent
commit
ce6e405934
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      exec/shell.lua

+ 6
- 1
exec/shell.lua View File

@@ -1,3 +1,4 @@
local serial = require "serialization"
print(pcall(function()
local shenv = {}
function shenv.quit()
@@ -49,7 +50,11 @@ while os.getenv("run") do
tResult = {pcall(load(input,"shell","t",shenv))}
if tResult[1] == true then table.remove(tResult,1) end
for k,v in pairs(tResult) do
print(v)
if type(v) == "table" then
print(serial.serialize(v))
else
print(v)
end
end
end
end))

Loading…
Cancel
Save