Signed-off-by: Suleiman Dibirov <idsulik@gmail.com>
This commit is contained in:
Suleiman Dibirov 2024-10-27 08:40:00 +02:00 коммит произвёл Guillaume Lours
Родитель 2ac081b4c4
Коммит 73bfbab54b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -134,7 +134,7 @@ func NewDockerPatternMatcher(repoRoot string, patterns []string) (*dockerPathMat
if hasAllPattern {
// Remove all non-exclusion patterns (those that don't start with '!')
patterns = slices.DeleteFunc(patterns, func(p string) bool {
return len(p) > 0 && p[0] != '!' // Only keep exclusion patterns
return p != "" && p[0] != '!' // Only keep exclusion patterns
})
}