Browse Source
bpo-39505: delete the redundant '/' in $env:VIRTUAL_ENV (GH-18290)
pull/18360/head
schwarzichet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
Lib/venv/scripts/common/Activate.ps1
|
|
|
@ -168,7 +168,6 @@ if ($VenvDir) { |
|
|
|
} else { |
|
|
|
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." |
|
|
|
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") |
|
|
|
$VenvDir = $VenvDir.Insert($VenvDir.Length, "/") |
|
|
|
Write-Verbose "VenvDir=$VenvDir" |
|
|
|
} |
|
|
|
|
|
|
|
|