(repository_path: &str)
| 31 | } |
| 32 | |
| 33 | async fn resolve_remote_git_target(repository_path: &str) -> Option<RemoteGitTarget> { |
| 34 | let entry = lookup_remote_connection(repository_path).await?; |
| 35 | Some(RemoteGitTarget { |
| 36 | connection_id: entry.connection_id, |
| 37 | repository_path: normalize_remote_workspace_path(repository_path), |
| 38 | }) |
| 39 | } |
| 40 | |
| 41 | fn shell_quote(value: &str) -> String { |
| 42 | if value |
no test coverage detected