We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bf574 commit 8014fafCopy full SHA for 8014faf
src/global/paths.rs
@@ -23,7 +23,7 @@ impl Paths {
23
fn find_dev_root(first_root: &Path) -> Option<PathBuf> {
24
let bn = first_root.file_name().and_then(std::ffi::OsStr::to_str);
25
26
- if bn == Some("release") || bn == Some("debug") {
+ if bn == Some("release") || bn == Some("debug") || bn == Some("deps") {
27
// A Rust release dir?
28
let mut current_root = first_root.parent();
29
while let Some(root) = current_root {
0 commit comments