mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Prefer posix_local if its available over posix_prefix.
This commit is contained in:
@@ -183,6 +183,8 @@ class Environment:
|
||||
return "venv"
|
||||
elif os.name == "nt":
|
||||
return "nt"
|
||||
elif "posix_local" in get_scheme_names():
|
||||
return "posix_local"
|
||||
else:
|
||||
return "posix_prefix"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user