:3
This commit is contained in:
parent
3e1fd08fb8
commit
cfc3374897
3
rtmc.lua
3
rtmc.lua
|
@ -399,6 +399,9 @@ rawset(__BUNDLER_FILES, "updater", function ()
|
||||||
log.debug("Commit hash doesnt match, probbably an update");
|
log.debug("Commit hash doesnt match, probbably an update");
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
if branch == "main" then
|
||||||
|
log.debug("No need for an update");
|
||||||
|
end
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
function updater:update(path, url)
|
function updater:update(path, url)
|
||||||
|
|
|
@ -82,7 +82,9 @@ function updater:check(branch)
|
||||||
log.debug("Commit hash doesnt match, probbably an update");
|
log.debug("Commit hash doesnt match, probbably an update");
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
if branch == "main" then
|
||||||
|
log.debug("No need for an update");
|
||||||
|
end
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user