12 lines
253 B
Lua
12 lines
253 B
Lua
|
|
local bin_path = "/bin/"
|
|
local lib_path = "/lib/"
|
|
|
|
shell.setPath(shell.path() .. ":" .. bin_path)
|
|
|
|
-- Load libraries
|
|
for _, file in ipairs(fs.list(lib_path)) do
|
|
if not fs.isDir(lib_path .. file) then
|
|
os.loadAPI(lib_path .. file)
|
|
end
|
|
end |