Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9604F200BAA for ; Thu, 13 Oct 2016 04:27:54 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9000D160AEE; Thu, 13 Oct 2016 02:27:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D4FB9160ACA for ; Thu, 13 Oct 2016 04:27:53 +0200 (CEST) Received: (qmail 81474 invoked by uid 500); 13 Oct 2016 02:27:53 -0000 Mailing-List: contact commits-help@eagle.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@eagle.incubator.apache.org Delivered-To: mailing list commits@eagle.incubator.apache.org Received: (qmail 81465 invoked by uid 99); 13 Oct 2016 02:27:53 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Oct 2016 02:27:53 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9E856180227 for ; Thu, 13 Oct 2016 02:27:52 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id cTRuLdHFO6Ha for ; Thu, 13 Oct 2016 02:27:50 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id D1A185F1EE for ; Thu, 13 Oct 2016 02:27:49 +0000 (UTC) Received: (qmail 81420 invoked by uid 99); 13 Oct 2016 02:27:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Oct 2016 02:27:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D40BDDFBA8; Thu, 13 Oct 2016 02:27:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: qingwzhao@apache.org To: commits@eagle.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-eagle git commit: [MINOR] Update eagle-env.sh to support MINGW64 Date: Thu, 13 Oct 2016 02:27:48 +0000 (UTC) archived-at: Thu, 13 Oct 2016 02:27:54 -0000 Repository: incubator-eagle Updated Branches: refs/heads/master 6823410fc -> 3301c9d68 [MINOR] Update eagle-env.sh to support MINGW64 Author: Qingwen Zhao Closes #496 from qingwen220/updateServerScript. Project: http://git-wip-us.apache.org/repos/asf/incubator-eagle/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-eagle/commit/3301c9d6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-eagle/tree/3301c9d6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-eagle/diff/3301c9d6 Branch: refs/heads/master Commit: 3301c9d68acc9b780c62d032aabbfe69db3e7b5d Parents: 6823410 Author: Qingwen Zhao Authored: Thu Oct 13 10:27:41 2016 +0800 Committer: Zhao, Qingwen Committed: Thu Oct 13 10:27:41 2016 +0800 ---------------------------------------------------------------------- eagle-server-assembly/src/main/bin/eagle-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-eagle/blob/3301c9d6/eagle-server-assembly/src/main/bin/eagle-env.sh ---------------------------------------------------------------------- diff --git a/eagle-server-assembly/src/main/bin/eagle-env.sh b/eagle-server-assembly/src/main/bin/eagle-env.sh index cbe307b..892978b 100644 --- a/eagle-server-assembly/src/main/bin/eagle-env.sh +++ b/eagle-server-assembly/src/main/bin/eagle-env.sh @@ -26,7 +26,7 @@ export OS_TYPE="linux" export CLASSPATH_DELIMITER=":" case `which uname >/dev/null && uname -s` in - CYGWIN_NT-*) + CYGWIN_NT-* | MINGW64_NT-*) OS_TYPE="windows" CLASSPATH_DELIMITER=";" ;;