diff --git a/Installer/BIOS.lua b/Installer/BIOS.lua new file mode 100644 index 00000000..38e70e93 --- /dev/null +++ b/Installer/BIOS.lua @@ -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)() \ No newline at end of file