From 3e1fd08fb82dc79ad3b3a92638c4af0d21c957b4 Mon Sep 17 00:00:00 2001 From: MCorange Date: Sun, 25 Aug 2024 22:58:18 +0300 Subject: [PATCH] :3 --- rtmc.lua | 1 + src/updater.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/rtmc.lua b/rtmc.lua index f60da83..b0cc4d4 100644 --- a/rtmc.lua +++ b/rtmc.lua @@ -363,6 +363,7 @@ rawset(__BUNDLER_FILES, "updater", function () function updater:checkAndUpdateAll() local updated = false; for path, entry in pairs(self.updated_files) do + log.debug("Checking update for " .. path); if self:check(entry.branch) then self:update(path, entry.url); updated = true; diff --git a/src/updater.lua b/src/updater.lua index 8a77c61..386e00a 100644 --- a/src/updater.lua +++ b/src/updater.lua @@ -41,6 +41,7 @@ end function updater:checkAndUpdateAll() local updated = false; for path, entry in pairs(self.updated_files) do + log.debug("Checking update for " .. path); if self:check(entry.branch) then self:update(path, entry.url); updated = true;