From 0eecf052262594eed873f01fca659da9a1e7ae0e Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 17 Aug 2017 10:47:49 -0700 Subject: [PATCH] provision: Fix detection of Windows. --- tools/provision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/provision b/tools/provision index 15871c0..95c3f6c 100755 --- a/tools/provision +++ b/tools/provision @@ -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/