| 32 | ) |
| 33 | |
| 34 | type dockerPathMatcher struct { |
| 35 | repoRoot string |
| 36 | matcher *patternmatcher.PatternMatcher |
| 37 | } |
| 38 | |
| 39 | func (i dockerPathMatcher) Matches(f string) (bool, error) { |
| 40 | if !filepath.IsAbs(f) { |
nothing calls this directly
no outgoing calls
no test coverage detected