spm works maybe?

This commit is contained in:
2026-08-14 20:44:11 -04:00
parent 56646625c0
commit 10aa0c62ff
82 changed files with 1706 additions and 535 deletions
+15
View File
@@ -0,0 +1,15 @@
local args={...}
local bootstrap=""
if args[1]=="cct" then
print("installing cct")
local function get(url)
local resp=http.get(url)
return resp.readAll()
end
bootstrap=get("https://git.astronand.dev/Hyperion/HyperionOS/raw/branch/main/bootstrap/cct-bootstrap.lua")
else
error("Unsupported architecture")
end
local func=load(bootstrap,"@Bootstrap", "t", _G)
func()