Display portable paths in posix venv activation commands (#5956)

Closes #5950
This commit is contained in:
Zanie Blue 2024-08-09 11:28:00 -05:00 committed by GitHub
parent 4330f9718b
commit 7fdb878fd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -368,7 +368,7 @@ async fn venv_impl(
/// Quote a path, if necessary, for safe use in a POSIX-compatible shell command.
fn shlex_posix(executable: impl AsRef<Path>) -> String {
// Convert to a display path.
let executable = executable.as_ref().user_display().to_string();
let executable = executable.as_ref().portable_display().to_string();
// Like Python's `shlex.quote`:
// > Use single quotes, and put single quotes into double quotes