This commit is contained in:
Gvidas Juknevičius 2024-08-18 05:02:09 +03:00
parent cb86e37506
commit ff50f35461
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ rawset(__BUNDLER_FILES, "ui.lua", function ()
local status, err = pcall(function ()
parallel.waitForAll(basalt.autoUpdate, updater.UpdateChecker)
end)
if not status then
if not status and err ~= "Terminated" then
print("Error detected: " .. err)
monitor.clear()
fs.delete("basalt.lua")

View File

@ -114,7 +114,7 @@ function mod.InitUi()
parallel.waitForAll(basalt.autoUpdate, updater.UpdateChecker)
end)
if not status then
if not status and err ~= "Terminated" then
print("Error detected: " .. err)
monitor.clear()
fs.delete("basalt.lua")