(root, p string)
| 172 | } |
| 173 | |
| 174 | func relPath(root, p string) string { |
| 175 | rel, err := filepath.Rel(root, p) |
| 176 | if err != nil { |
| 177 | return p |
| 178 | } |
| 179 | return filepath.ToSlash(rel) |
| 180 | } |
| 181 | |
| 182 | func shouldSkipDir(name string) bool { |
| 183 | switch name { |
no outgoing calls
no test coverage detected