(value: &str)
| 887 | } |
| 888 | |
| 889 | fn quote_posix_command_arg(value: &str) -> String { |
| 890 | format!("'{}'", value.replace('\'', "'\\''")) |
| 891 | } |
| 892 | |
| 893 | fn canonicalize_existing_prefix(path: &Path) -> std::io::Result<PathBuf> { |
| 894 | let mut existing = path.to_path_buf(); |
no outgoing calls
no test coverage detected