mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Call as_ref only once
This commit is contained in:
parent
13533cb99c
commit
6607938bf8
1 changed files with 3 additions and 2 deletions
|
@ -42,8 +42,9 @@ pub fn binary_exists<T: AsRef<OsStr>>(binary_name: T) -> bool {
|
||||||
pub fn which<T: AsRef<OsStr>>(
|
pub fn which<T: AsRef<OsStr>>(
|
||||||
binary_name: T,
|
binary_name: T,
|
||||||
) -> Result<std::path::PathBuf, ExecutableNotFoundError> {
|
) -> Result<std::path::PathBuf, ExecutableNotFoundError> {
|
||||||
which::which(binary_name.as_ref()).map_err(|err| ExecutableNotFoundError {
|
let binary_name = binary_name.as_ref();
|
||||||
command: binary_name.as_ref().to_string_lossy().into_owned(),
|
which::which(binary_name).map_err(|err| ExecutableNotFoundError {
|
||||||
|
command: binary_name.to_string_lossy().into_owned(),
|
||||||
inner: err,
|
inner: err,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue