We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0391c3 commit e02c5b1Copy full SHA for e02c5b1
lua/lazy/manage/runner.lua
@@ -100,16 +100,16 @@ function Runner:_start()
100
local is_running = s.task and s.task:is_running()
101
local step = self._pipeline[s.step]
102
103
+ if is_running then
104
+ -- still running
105
+ active = active + 1
106
-- selene:allow(empty_if)
- if s.task and s.task:has_errors() then
107
+ elseif s.task and s.task:has_errors() then
108
-- don't continue tasks if there are errors
109
elseif step and step.task == "wait" and not resume then
110
-- waiting for sync
111
waiting = waiting + 1
112
wait_step = s.step
- elseif is_running then
- -- still running
- active = active + 1
113
else
114
next[#next + 1] = name
115
end
0 commit comments