hopefully this will stop it from autoupdating for no reason :3

This commit is contained in:
xomf 2024-08-17 22:45:31 -04:00
parent 4a50afc920
commit c47f089395
3 changed files with 24 additions and 10 deletions

View File

@ -26,11 +26,17 @@ rawset(__BUNDLER_FILES, "updater.lua", function ()
if string.find(update_code_text, "^local __BUNDLER_FILES = {}") then
--make backup
fs.copy("startup.lua","backup.lua")
--install update
local file = fs.open("startup.lua", "w")
file.write(update_code_text)
local startup_file = fs.open("startup.lua", "r")
local startup_contents = file.readAll()
file.close()
os.reboot()
if update_code_text ~= startup_contents then
local file = fs.open("startup.lua", "w")
file.write(update_code_text)
file.close()
os.reboot()
else
print("Nothing changed, not updating.")
end
end
print("Bad file download (core)")
end
@ -175,7 +181,7 @@ rawset(__BUNDLER_FILES, "ui.lua", function ()
end)
if not status and err ~= "Terminated" then
print("Error detected: " .. err)
monitor.clear()
utils.MonReset(0.5)
fs.delete("basalt.lua")
fs.delete("startup.lua")
fs.copy("backup.lua", "startup.lua")

View File

@ -114,7 +114,7 @@ function mod.InitUi()
if not status and err ~= "Terminated" then
print("Error detected: " .. err)
monitor.clear()
utils.MonReset(0.5)
fs.delete("basalt.lua")
fs.delete("startup.lua")
fs.copy("backup.lua", "startup.lua")

View File

@ -19,11 +19,19 @@ local function checkForUpdate()
--make backup
fs.copy("startup.lua","backup.lua")
--install update
local file = fs.open("startup.lua", "w")
file.write(update_code_text)
local startup_file = fs.open("startup.lua", "r")
local startup_contents = file.readAll()
file.close()
os.reboot()
if update_code_text ~= startup_contents then
local file = fs.open("startup.lua", "w")
file.write(update_code_text)
file.close()
os.reboot()
else
print("Nothing changed, not updating.")
end
end
print("Bad file download (core)")
end