1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-11-21 11:35:44 -05:00

cleanup my mess

This commit is contained in:
XeonSquared 2023-06-07 00:19:09 +10:00
parent eb95f9715e
commit f311063a42

View File

@ -38,7 +38,6 @@ local function spawnShell(fin,fout)
io.output(fout):setvbuf("no")
print(_OSVERSION.." - "..tostring(math.floor(computer.totalMemory()/1024)).."K RAM")
print((os.getenv("HOSTNAME") or "unknown") .. " on " .. fin)
-- return os.spawn(function() local w,r = pcall(shell.interactive) if not w then syslog(r) end end, "shell: "..tostring(fin))
return os.spawn(shell.interactive, "shell: "..tostring(fin))
end