You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@eagle.apache.org by qi...@apache.org on 2016/10/13 02:27:48 UTC

incubator-eagle git commit: [MINOR] Update eagle-env.sh to support MINGW64

Repository: incubator-eagle
Updated Branches:
  refs/heads/master 6823410fc -> 3301c9d68


[MINOR] Update eagle-env.sh to support MINGW64

Author: Qingwen Zhao <qi...@gmail.com>

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 <qi...@gmail.com>
Authored: Thu Oct 13 10:27:41 2016 +0800
Committer: Zhao, Qingwen <qi...@apache.org>
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=";"
         ;;