We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303b444 commit 7e60264Copy full SHA for 7e60264
crates/ra_env/src/lib.rs
@@ -23,7 +23,10 @@ pub fn get_path_for_executable(executable_name: impl AsRef<str>) -> Result<Strin
23
if is_valid_executable(&path) {
24
Ok(path)
25
} else {
26
- Err(Error::msg(format!("`{}` environment variable points to something that's not a valid executable", env_var)))
+ Err(Error::msg(format!(
27
+ "`{}` environment variable points to something that's not a valid executable",
28
+ env_var
29
+ )))
30
}
31
32
let final_path: Option<String> = if is_valid_executable(executable_name) {
0 commit comments