mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-21 03:29:22 +01:00
20 lines
592 B
Lua
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/experience.lua",
|
|
path = "experience.lua",
|
|
},
|
|
}
|
|
|
|
for i = 1, #list do
|
|
shell.execute("wget " .. list[i].url .. " " .. list[i].path .. " -f")
|
|
end |