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 path_to_use = ifletSome(ref user_path) = dense_path {
446
+
if user_path != &module_paths[0]{
447
+
tracing::info!("`{}` found in `modules.json`, but using provided `--dense-path={user_path}` instead", module_paths[0]);
448
+
}
449
+
user_path.clone()
450
+
}else{
451
+
module_paths[0].clone()
452
+
};
453
+
Some(vec![path_to_use])
454
+
}
455
+
_ => {
456
+
if dense_path.is_some(){
457
+
tracing::warn!("A value for `--dense-path` was provided, but since there's more than one subsequent Dense module, then the provided value will be ignored.");
458
+
}
459
+
Some(module_paths)
460
+
}
461
+
},
462
+
Err(err) => {
463
+
tracing::warn!("Failed to parse local modules.json: {err}");
0 commit comments