(path: &Path)
| 483 | } |
| 484 | |
| 485 | fn normalize_existing_path(path: &Path) -> PathBuf { |
| 486 | fs::canonicalize(path).unwrap_or_else(|_| path.to_path_buf()) |
| 487 | } |
| 488 | |
| 489 | fn detect_worktree_stop(start: &Path) -> PathBuf { |
| 490 | let mut current = normalize_existing_path(start); |
no outgoing calls
no test coverage detected