(entry: &DirEntry)
| 25 | } |
| 26 | |
| 27 | pub fn is_git_metadata(entry: &DirEntry) -> bool { |
| 28 | entry |
| 29 | .path() |
| 30 | .components() |
| 31 | .any(|c| c == std::path::Component::Normal(".git".as_ref())) |
| 32 | } |
| 33 | |
| 34 | pub fn substitute_file_by_placeholder( |
| 35 | dir: &str, |
no test coverage detected