We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9961061 commit 72cf819Copy full SHA for 72cf819
virtualenvwrapper.sh
@@ -64,7 +64,7 @@ fi
64
65
# Define script folder depending on the platorm (Win32/Unix)
66
VIRTUALENVWRAPPER_ENV_BIN_DIR="bin"
67
-if [ "$OS" = "Windows_NT" ] && [ "$MSYSTEM" = "MINGW32" ]
+if [ "$OS" = "Windows_NT" ] && ([ "$MSYSTEM" = "MINGW32" ] || [ "$MSYSTEM" = "MINGW64" ])
68
then
69
# Only assign this for msys, cygwin use standard Unix paths
70
# and its own python installation
virtualenvwrapper/user_scripts.py
@@ -18,7 +18,7 @@
18
# Are we running under msys
19
if sys.platform == 'win32' and \
20
os.environ.get('OS') == 'Windows_NT' and \
21
- os.environ.get('MSYSTEM') == 'MINGW32':
+ os.environ.get('MSYSTEM') in ('MINGW32', 'MINGW64'):
22
is_msys = True
23
script_folder = 'Scripts'
24
else:
0 commit comments