()
| 1448 | } |
| 1449 | |
| 1450 | fn openshell_ssh_config_path() -> Result<PathBuf> { |
| 1451 | Ok(openshell_core::paths::xdg_config_dir()? |
| 1452 | .join("openshell") |
| 1453 | .join("ssh_config")) |
| 1454 | } |
| 1455 | |
| 1456 | fn user_ssh_config_path() -> Result<PathBuf> { |
| 1457 | let home = std::env::var("HOME") |
no test coverage detected