Skip to content

Commit 8014faf

Browse files
committed
fix(paths): Fix path resolution in test targets
1 parent e8bf574 commit 8014faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/global/paths.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl Paths {
2323
fn find_dev_root(first_root: &Path) -> Option<PathBuf> {
2424
let bn = first_root.file_name().and_then(std::ffi::OsStr::to_str);
2525

26-
if bn == Some("release") || bn == Some("debug") {
26+
if bn == Some("release") || bn == Some("debug") || bn == Some("deps") {
2727
// A Rust release dir?
2828
let mut current_root = first_root.parent();
2929
while let Some(root) = current_root {

0 commit comments

Comments
 (0)