MineOS/Applications/Robot/download.lua
Igor Timofeev d842e2866f )))
2018-06-14 17:18:12 +03:00

20 lines
592 B
Lua

local shell = require("shell")
local list = {
{
url = "https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Applications/Robot/advancedRobot.lua",
path = "/lib/advancedRobot.lua",
},
{
url = "https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Applications/Robot/commander.lua",
path = "commander.lua",
},
{
url = "https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Applications/Robot/expirience.lua",
path = "expirience.lua",
},
}
for i = 1, #list do
shell.execute("wget " .. list[i].url .. " " .. list[i].path .. " -f")
end