Skip to content

Commit 65a96d8

Browse files
authored
fix: dispose dependency tasks with force (#433)
1 parent 72c68aa commit 65a96d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/overseer/component/dependencies.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ return {
8080
local dep_task = task_list.get(task_id)
8181
if dep_task then
8282
dep_task:stop()
83-
dep_task:dispose()
83+
dep_task:dispose(true)
8484
end
8585
end
8686
end,

0 commit comments

Comments
 (0)