From 1c401ac21c8066dcd945273b62b2c10a06c282ee Mon Sep 17 00:00:00 2001 From: Fedor Korotkiy Date: Fri, 16 Apr 2021 19:15:56 +0300 Subject: [PATCH] Fix --- tools/testtool/commands/deadlines.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/testtool/commands/deadlines.go b/tools/testtool/commands/deadlines.go index f043692..ff33b14 100644 --- a/tools/testtool/commands/deadlines.go +++ b/tools/testtool/commands/deadlines.go @@ -93,14 +93,12 @@ func findChangedTasks(d Deadlines, files []string) []string { _, task := d.FindTask(components[0]) if task != nil { tasks[task.Name] = struct{}{} - continue } for _, task := range d.Tasks() { for _, path := range task.Watch { if components[0] == path { tasks[task.Name] = struct{}{} - continue } } }