From e5cd5c6e71c3c343c3258f3d525b403bb1fde8a3 Mon Sep 17 00:00:00 2001 From: "Rph :3" <11350302+rphsoftware@users.noreply.github.com> Date: Thu, 27 Mar 2025 18:53:48 +0100 Subject: [PATCH] Dev mode (auto-run updater) --- src/startup.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/startup.lua b/src/startup.lua index 2076298..201e560 100644 --- a/src/startup.lua +++ b/src/startup.lua @@ -2,6 +2,14 @@ -- This script is only responsible for killing rednet and jumping to the kernel -- based on some code rph wrote and gave me + +if settings.get("snowier.auto_update") then + local defaultRoot = "https://git.colon-three.com/kodi/snowier/raw/branch/main/" + local repoRoot = settings.get("snowier.repo_base") or defaultRoot + + shell.run("wget run " .. repoRoot .. "install.lua") +end + local function main() if not _G["rednet"] then return @@ -27,7 +35,10 @@ local function main() _G.printError = p _G.os.pullEventRaw = o _G["rednet"] = nil - os.run({}, "/kernel/entry.lua") + os.run({ + -- This is an odd hack. We should look into not doing this to run the kernel. + ["require"]=require + }, "/kernel/entry.lua") end print("[D] Queueing bogus modem message")