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
let resolved = which::which(shim_name).map_err(|e| {
95
-
VoltaError::from_source(
96
-
e,
97
-
ErrorKind::ShimResolveError{
98
-
name: shim_name.to_string(),
99
-
},
100
-
)
101
-
})?;
102
-
if resolved != shim {
103
-
warn!("{} is shadowed by another binary of the same name at {}. Please ensure that {} is at the front of your PATH.", shim_name, resolved.display(), shim.display());
"Cannot find command {}. Please ensure that {} is at the front of your PATH.",
209
+
shim_name,
210
+
shim.display()
211
+
);
212
+
return;
213
+
}
214
+
};
215
+
if resolved != shim {
216
+
info!("{} is shadowed by another binary of the same name at {}. Please ensure that {} is at the front of your PATH.", shim_name, resolved.display(), shim.display());
0 commit comments