()
| 378 | } |
| 379 | |
| 380 | fn installed_arguments() -> anyhow::Result<Option<Vec<String>>> { |
| 381 | for plist_path in service_plist_paths()? { |
| 382 | if let Some(arguments) = installed_arguments_from_plist(&plist_path)? { |
| 383 | return Ok(Some(arguments)); |
| 384 | } |
| 385 | } |
| 386 | Ok(None) |
| 387 | } |
| 388 | |
| 389 | fn installed_arguments_for_label(label: &str) -> anyhow::Result<Option<Vec<String>>> { |
| 390 | installed_arguments_from_plist(&plist_path_for_label(label)?) |
no test coverage detected