Skip to content

Commit ec07503

Browse files
committed
Use absolute instead of canonical paths
1 parent 93a2c7c commit ec07503

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/uv/src/commands/pip/operations.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ pub(crate) fn report_target_environment(
551551
env.root().user_display()
552552
);
553553

554-
let Ok(target) = env.root().canonicalize() else {
554+
let Ok(target) = std::path::absolute(env.root()) else {
555555
debug!("{}", message);
556556
return Ok(());
557557
};
@@ -571,7 +571,7 @@ pub(crate) fn report_target_environment(
571571
}
572572

573573
// Do not report a default environment path
574-
if let Ok(default) = PathBuf::from(".venv").canonicalize() {
574+
if let Ok(default) = std::path::absolute(PathBuf::from(".venv")) {
575575
if target == default {
576576
debug!("{}", message);
577577
return Ok(());

0 commit comments

Comments
 (0)