provision: Fix detection of Windows.

This commit is contained in:
Tim Abbott 2017-08-17 10:47:49 -07:00
parent 2f7968e860
commit 0eecf05226

View file

@ -8,7 +8,7 @@ if [ ! -d "$BASEDIR/zulip-api-py2-venv" ]; then
fi
VENVBINDIR="bin"
if [[ "$OSTYPE" == "cygwin" ]]; then
if [[ "$OSTYPE" == "msys" ]]; then
# POSIX compatibility layer and Linux environment emulation for Windows
# Virtual uses /Scripts instead of /bin on Windows.
# Read https://virtualenv.pypa.io/en/stable/userguide/