This is an automated email from the ASF dual-hosted git repository.
phunt pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.4 by this push:
new 9463b0d ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows)
9463b0d is described below
commit 9463b0d4c13d5c4dd2d86535985a4d479fa7b5af
Author: Amichai Rothman <[email protected]>
AuthorDate: Sun Mar 17 22:24:13 2019 -0700
ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows)
Author: Amichai Rothman <[email protected]>
Reviewers: [email protected]
Closes #857 from amichair/ZOOKEEPER-2621
Change-Id: I876b5202de30a6fcf296756ead6843e7f59167da
(cherry picked from commit 19cb6fb8f7989121025f91889462386eb8918c56)
Signed-off-by: Patrick Hunt <[email protected]>
---
bin/zkEnv.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/zkEnv.sh b/bin/zkEnv.sh
index 5ce2cd8..d63bf47 100755
--- a/bin/zkEnv.sh
+++ b/bin/zkEnv.sh
@@ -111,7 +111,7 @@ CLASSPATH="$ZOOBINDIR/../build/classes:$CLASSPATH"
CLASSPATH="$ZOOBINDIR/../zookeeper-server/target/classes:$CLASSPATH"
case "`uname`" in
- CYGWIN*) cygwin=true ;;
+ CYGWIN*|MINGW*) cygwin=true ;;
*) cygwin=false ;;
esac