This is an automated email from the ASF dual-hosted git repository.
phunt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new 19cb6fb ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows)
19cb6fb is described below
commit 19cb6fb8f7989121025f91889462386eb8918c56
Author: Amichai Rothman <amichai2@amichais.net>
AuthorDate: Sun Mar 17 22:24:13 2019 -0700
ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows)
Author: Amichai Rothman <amichai2@amichais.net>
Reviewers: phunt@apache.org
Closes #857 from amichair/ZOOKEEPER-2621
Change-Id: I876b5202de30a6fcf296756ead6843e7f59167da
---
bin/zkEnv.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/zkEnv.sh b/bin/zkEnv.sh
index 3ae89ba..8d93a50 100755
--- a/bin/zkEnv.sh
+++ b/bin/zkEnv.sh
@@ -128,7 +128,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
|