made spawnprompt set the terminal correctly

This commit is contained in:
Izaya 2019-01-08 18:05:20 +11:00
parent 8b35bfe3a6
commit 863f343646
1 changed files with 2 additions and 1 deletions

View File

@ -2,8 +2,9 @@ os.spawn(function()
print(_OSVERSION,tostring(computer.totalMemory()/1024).."K memory")
for k,v in pairs(fd) do
if v.t == "t" then
tTasks[cPid].t = k
os.setenv("t") = k
print("Spawning Lua prompt for "..tostring(k))
os.setenv("PWD","/boot")
os.spawn(function() print(pcall(function() while true do
io.write(_VERSION.."> ")
tResult = {pcall(load(io.read()))}