MineOS/Applications/Robot/download.lua
Igor Timofeev acb3f860e5 aefaef
2018-06-14 19:17:01 +03:00

24 lines
735 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/experience.lua",
path = "experience.lua",
},
{
url = "https://raw.githubusercontent.com/IgorTimofeev/MineOS/master/Applications/Robot/VRScanRobot.lua",
path = "VRScan.lua",
},
}
for i = 1, #list do
shell.execute("wget " .. list[i].url .. " " .. list[i].path .. " -f")
end