()
| 133 | } |
| 134 | |
| 135 | fn ssh_agent_running() -> bool { |
| 136 | match std::env::var("SSH_AUTH_SOCK") { |
| 137 | Ok(auth_socket) => is_socket(&auth_socket), |
| 138 | Err(_) => false, |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | #[cfg(unix)] |
| 143 | fn is_socket(path: &str) -> bool { |
no test coverage detected