(path: &Path)
| 120 | } |
| 121 | |
| 122 | fn normalize(path: &Path) -> PathBuf { |
| 123 | std::fs::canonicalize(path).unwrap_or_else(|_| path.to_path_buf()) |
| 124 | } |
| 125 | |
| 126 | /// Expand a glob pattern rooted at `cwd`, returning absolute paths. |
| 127 | fn expand_glob(pattern: &str, cwd: &Path) -> Vec<PathBuf> { |
no outgoing calls
no test coverage detected