(args: &mut Vec<String>, name: &str, value: Option<PathBuf>)
| 3563 | } |
| 3564 | |
| 3565 | fn push_optional_path_arg(args: &mut Vec<String>, name: &str, value: Option<PathBuf>) { |
| 3566 | if let Some(value) = value { |
| 3567 | push_arg(args, name, value.to_string_lossy().into_owned()); |
| 3568 | } |
| 3569 | } |
| 3570 | |
| 3571 | fn format_pairing_code(pairing_code: &str) -> String { |
| 3572 | if pairing_code.len() == 6 { |
no test coverage detected