diff --git a/rtmc.lua b/rtmc.lua index 394e438..3a276c5 100644 --- a/rtmc.lua +++ b/rtmc.lua @@ -356,6 +356,7 @@ rawset(__BUNDLER_FILES, "updater.lua", function () for path, entry in pairs(self.updated_files) do if self:check(entry.branch) then self:update(path, entry.url); + log.info("Updated!"); os.reboot(); end end diff --git a/src/updater.lua b/src/updater.lua index 15f661e..4d744f1 100644 --- a/src/updater.lua +++ b/src/updater.lua @@ -41,6 +41,7 @@ function updater:checkAndUpdateAll() for path, entry in pairs(self.updated_files) do if self:check(entry.branch) then self:update(path, entry.url); + log.info("Updated!"); os.reboot(); end end