This commit is contained in:
Gvidas Juknevičius 2024-08-25 22:58:18 +03:00
parent 818412da9e
commit 3e1fd08fb8
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 0 deletions

View File

@ -363,6 +363,7 @@ rawset(__BUNDLER_FILES, "updater", function ()
function updater:checkAndUpdateAll() function updater:checkAndUpdateAll()
local updated = false; local updated = false;
for path, entry in pairs(self.updated_files) do for path, entry in pairs(self.updated_files) do
log.debug("Checking update for " .. path);
if self:check(entry.branch) then if self:check(entry.branch) then
self:update(path, entry.url); self:update(path, entry.url);
updated = true; updated = true;

View File

@ -41,6 +41,7 @@ end
function updater:checkAndUpdateAll() function updater:checkAndUpdateAll()
local updated = false; local updated = false;
for path, entry in pairs(self.updated_files) do for path, entry in pairs(self.updated_files) do
log.debug("Checking update for " .. path);
if self:check(entry.branch) then if self:check(entry.branch) then
self:update(path, entry.url); self:update(path, entry.url);
updated = true; updated = true;