mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fixes #29308: Respect VIRTUAL_ENV_DISABLE_PROMPT in Activate.ps1.
This commit is contained in:
parent
b2a5be0763
commit
3ac504289a
1 changed files with 9 additions and 7 deletions
|
@ -29,13 +29,15 @@ deactivate -nondestructive
|
|||
|
||||
$env:VIRTUAL_ENV="__VENV_DIR__"
|
||||
|
||||
# Set the prompt to include the env name
|
||||
# Make sure _OLD_VIRTUAL_PROMPT is global
|
||||
function global:_OLD_VIRTUAL_PROMPT {""}
|
||||
copy-item function:prompt function:_OLD_VIRTUAL_PROMPT
|
||||
function global:prompt {
|
||||
Write-Host -NoNewline -ForegroundColor Green '__VENV_PROMPT__'
|
||||
_OLD_VIRTUAL_PROMPT
|
||||
if (! $env:VIRTUAL_ENV_DISABLE_PROMPT) {
|
||||
# Set the prompt to include the env name
|
||||
# Make sure _OLD_VIRTUAL_PROMPT is global
|
||||
function global:_OLD_VIRTUAL_PROMPT {""}
|
||||
copy-item function:prompt function:_OLD_VIRTUAL_PROMPT
|
||||
function global:prompt {
|
||||
Write-Host -NoNewline -ForegroundColor Green '__VENV_PROMPT__'
|
||||
_OLD_VIRTUAL_PROMPT
|
||||
}
|
||||
}
|
||||
|
||||
# Clear PYTHONHOME
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue