From commits-return-7683-archive-asf-public=cust-asf.ponee.io@zookeeper.apache.org Mon Mar 18 05:26:24 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id AF736180651 for ; Mon, 18 Mar 2019 06:26:23 +0100 (CET) Received: (qmail 35209 invoked by uid 500); 18 Mar 2019 05:26:22 -0000 Mailing-List: contact commits-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list commits@zookeeper.apache.org Received: (qmail 35198 invoked by uid 99); 18 Mar 2019 05:26:22 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Mar 2019 05:26:22 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 84D578930B; Mon, 18 Mar 2019 05:26:21 +0000 (UTC) Date: Mon, 18 Mar 2019 05:26:21 +0000 To: "commits@zookeeper.apache.org" Subject: [zookeeper] branch master updated: ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155288678142.10328.3642225516465820256@gitbox.apache.org> From: phunt@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: zookeeper X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7256d01a26412cd35a46edab6de9ac8c5adf5bb3 X-Git-Newrev: 19cb6fb8f7989121025f91889462386eb8918c56 X-Git-Rev: 19cb6fb8f7989121025f91889462386eb8918c56 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 AuthorDate: Sun Mar 17 22:24:13 2019 -0700 ZOOKEEPER-2621: ZooKeeper doesn't start on MINGW32 (Windows) Author: Amichai Rothman 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