Testing installer bios

This commit is contained in:
IgorTimofeev 2020-07-24 15:09:11 +03:00
parent aa2569708c
commit 04d8730488

14
Installer/BIOS.lua Normal file
View File

@ -0,0 +1,14 @@
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)()