summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authordavidcoghlan <42351331+davidcoghlan@users.noreply.github.com>2020-10-12 10:51:18 +0100
committerGitHub <noreply@github.com>2020-10-12 10:51:18 +0100
commit2b0bbbabb45044c44d35e65bfc5aa60403b4906b (patch)
treeed3c9ad5385679901ae71ac996ecfcb363d2147b /docs
parent8df26493c467204dc6f94a9055aced3d74e4f95a (diff)
downloadvirtualenv-2b0bbbabb45044c44d35e65bfc5aa60403b4906b.tar.gz
Fix absolute paths for Cygwin (#1970)
* Fix absolute paths for Cygwin Absolute paths on Windows take the form "c:\somePath" -- these need to be mapped to the form "/cygdrive/c/somePath" on Cygwin. Otherwise, the virtualenv path gets garbled when activated on Cygwin, which can cause the wrong Python environment to be used. * Remove Cygwin from the list, rely on the shell script for that * Improved formatting * Update tests to handle mingw + msys explicitly * Add changelog entry * lint errors * Add msys support to the activation script * Fix script error & linting
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog/1969.bugfix.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/changelog/1969.bugfix.rst b/docs/changelog/1969.bugfix.rst
new file mode 100644
index 0000000..6e6e706
--- /dev/null
+++ b/docs/changelog/1969.bugfix.rst
@@ -0,0 +1 @@
+Handle Cygwin path conversion in the activation script - by :user:`davidcoghlan`.