v0.7.0 - Added basic CLI tools: ls, cd, cp, mv, rm, lua

This commit is contained in:
TheWahlolly
2025-04-27 10:13:12 +03:00
parent 64a761fdde
commit 109c0beffb
19 changed files with 347 additions and 16 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ local function loadfile(file)
data = data .. (tmpdata or "")
until not tmpdata
component.invoke(computer.getBootAddress(), "close", handle)
return(assert(load(data, "=" .. file)))
return assert(load(data, "=" .. file))
end
local function handleError(errorMessage)