(files []os.DirEntry)
| 1429 | } |
| 1430 | |
| 1431 | func fileNames(files []os.DirEntry) []string { |
| 1432 | names := make([]string, len(files)) |
| 1433 | for i, f := range files { |
| 1434 | names[i] = f.Name() |
| 1435 | } |
| 1436 | sort.Strings(names) |
| 1437 | return names |
| 1438 | } |
| 1439 | |
| 1440 | func stubExtension(path string) error { |
| 1441 | if err := os.MkdirAll(filepath.Dir(path), 0755); err != nil { |
no test coverage detected