mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
14 lines
310 B
Lua
14 lines
310 B
Lua
local handle, data, chunk = component.proxy(component.list("internet")()).request("https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Installer/Main.lua"), ""
|
|
|
|
while true do
|
|
chunk = handle.read(math.huge)
|
|
|
|
if chunk then
|
|
data = data .. chunk
|
|
else
|
|
break
|
|
end
|
|
end
|
|
|
|
handle.close()
|
|
load(data)() |