mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 19:19:21 +01:00
Testing installer bios
This commit is contained in:
parent
aa2569708c
commit
04d8730488
14
Installer/BIOS.lua
Normal file
14
Installer/BIOS.lua
Normal 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)()
|
||||||
Loading…
x
Reference in New Issue
Block a user