mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
24 lines
735 B
Lua
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 |