You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// to inherit environment variables including $PATH, $CARGO, $RUSTC, etc from that terminal;
51
51
// but launching VSCode from Dock does not inherit environment variables from a terminal.
52
52
// For more discussion, see #3118.
53
-
Err(Error::msg(format!("Failed to find `{}` executable. Make sure `{}` is in `$PATH`, or set `${}` to point to a valid executable.", executable_name, executable_name, env_var)))
53
+
bail!(
54
+
"Failed to find `{}` executable. Make sure `{}` is in `$PATH`, or set `${}` to point to a valid executable.",
0 commit comments