mirror of
https://github.com/astral-sh/uv.git
synced 2025-09-24 19:22:35 +00:00
Remove canonicalize calls (#6919)
## Summary A few of these should use `absolute` instead of `canonicalize`; and apparently we no longer need to strip the `CANONICAL_CWD` to get tests passing.
This commit is contained in:
parent
ae3f35cfe2
commit
7e6df8ffd4
3 changed files with 11 additions and 47 deletions
|
@ -119,7 +119,7 @@ pub(crate) fn create(
|
|||
Err(err) => return Err(Error::Io(err)),
|
||||
}
|
||||
|
||||
let location = location.canonicalize()?;
|
||||
let location = std::path::absolute(location)?;
|
||||
|
||||
let bin_name = if cfg!(unix) {
|
||||
"bin"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue