Files
ccphone/install.lua

42 lines
1.3 KiB
Lua

local expect = require "cc.expect".expect
local base_url = "https://git.cadencoaster.com/Rivulet/ccphone/raw/branch/main/"
local function download_to(path)
expect(2, path, "string")
term.write(path)
if not http.checkURL(base_url..path) then error("URL is not valid" ,2) end
local data = http.get(base_url..path).readAll()
fs.makeDir(fs.getDir(path))
local file = fs.open(path,"w")
if not file then error("Failed to open file", 2) end
file.write(data)
file.close()
print(" OK")
end
local filesystem = {
files = {
"startup/00_entrypointclient.lua",
"startup/99_phoneOS.lua",
"startup/01_repo.lua",
"libs/containers.lua",
"libs/windows.lua",
"libs/deflate.lua",
"libs/persistent-storage.lua",
},
dirs = {
"global-libraries",
"apps-meta",
"apps",
},
}for _,i in ipairs(filesystem.dirs) do
print("making dir",i)
fs.makeDir(i)
end
for _,i in ipairs(filesystem.files) do
download_to(i)
end
shell.run("wget run https://raw.githubusercontent.com/Pyroxenium/Basalt2/main/install.lua -f /global-libraries/basalt.lua")
shell.run("/startup/01_repo.lua")
repo.installApp("https://git.cadencoaster.com/Rivulet/ccphone/raw/branch/main/default_apps/Launcher.app")
repo.installApp("https://git.cadencoaster.com/Rivulet/ccphone/raw/branch/main/default_apps/Software.app")