Commit 9c1e9d45 authored by Berker Peksag's avatar Berker Peksag

Issue #27393: Fix escaping of venv activate commands on Windows

Patch by Manuel Kaufmann.
parent bddc3564
...@@ -89,9 +89,9 @@ venv's binary directory. The invocation of the script is platform-specific: ...@@ -89,9 +89,9 @@ venv's binary directory. The invocation of the script is platform-specific:
+-------------+-----------------+-----------------------------------------+ +-------------+-----------------+-----------------------------------------+
| | csh/tcsh | $ source <venv>/bin/activate.csh | | | csh/tcsh | $ source <venv>/bin/activate.csh |
+-------------+-----------------+-----------------------------------------+ +-------------+-----------------+-----------------------------------------+
| Windows | cmd.exe | C:\> <venv>\Scripts\activate.bat | | Windows | cmd.exe | C:\> <venv>\\Scripts\\activate.bat |
+-------------+-----------------+-----------------------------------------+ +-------------+-----------------+-----------------------------------------+
| | PowerShell | PS C:\> <venv>\Scripts\Activate.ps1 | | | PowerShell | PS C:\> <venv>\\Scripts\\Activate.ps1 |
+-------------+-----------------+-----------------------------------------+ +-------------+-----------------+-----------------------------------------+
You don't specifically *need* to activate an environment; activation just You don't specifically *need* to activate an environment; activation just
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment