Repository: incubator-hivemall
Updated Branches:
  refs/heads/master ac1e2e8db -> 7956b5f28


Close #69: [HIVEMALL-94] Fix build scripts


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/7956b5f2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/7956b5f2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/7956b5f2

Branch: refs/heads/master
Commit: 7956b5f289a481e25f701dd38f8f1f281e68baaf
Parents: ac1e2e8
Author: amaya <m...@sapphire.in.net>
Authored: Mon Apr 10 06:27:29 2017 +0900
Committer: myui <yuin...@gmail.com>
Committed: Mon Apr 10 06:27:29 2017 +0900

----------------------------------------------------------------------
 bin/build.sh                 | 2 +-
 bin/build_site.sh            | 2 +-
 bin/build_xgboost.sh         | 2 +-
 bin/format_header.sh         | 2 +-
 bin/maven_central_release.sh | 2 +-
 bin/mixserv_cluster.sh       | 2 +-
 bin/mixserv_daemon.sh        | 2 +-
 bin/start_mixserv.sh         | 2 +-
 bin/stop_mixserv.sh          | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/build.sh
----------------------------------------------------------------------
diff --git a/bin/build.sh b/bin/build.sh
index 9c39835..05d1f8f 100755
--- a/bin/build.sh
+++ b/bin/build.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/build_site.sh
----------------------------------------------------------------------
diff --git a/bin/build_site.sh b/bin/build_site.sh
index de3aa08..022cebf 100755
--- a/bin/build_site.sh
+++ b/bin/build_site.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
     if [ -e ../bin/${0##*/} ]; then
        HIVEMALL_HOME=".."
     elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/build_xgboost.sh
----------------------------------------------------------------------
diff --git a/bin/build_xgboost.sh b/bin/build_xgboost.sh
index 6d384b5..0bebcf8 100755
--- a/bin/build_xgboost.sh
+++ b/bin/build_xgboost.sh
@@ -47,7 +47,7 @@ fi
 XGBOOST_HASHVAL='7ab15a0b31c870c7779691639f521df3ccd4a56e'
 
 # Move to a top directory
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=`pwd`/..
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/format_header.sh
----------------------------------------------------------------------
diff --git a/bin/format_header.sh b/bin/format_header.sh
index 349aa49..da67420 100755
--- a/bin/format_header.sh
+++ b/bin/format_header.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/maven_central_release.sh
----------------------------------------------------------------------
diff --git a/bin/maven_central_release.sh b/bin/maven_central_release.sh
index 0137a88..8a7918f 100755
--- a/bin/maven_central_release.sh
+++ b/bin/maven_central_release.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/mixserv_cluster.sh
----------------------------------------------------------------------
diff --git a/bin/mixserv_cluster.sh b/bin/mixserv_cluster.sh
index 83707d7..5a2e493 100755
--- a/bin/mixserv_cluster.sh
+++ b/bin/mixserv_cluster.sh
@@ -23,7 +23,7 @@
 
 usage="Usage: mixserv_cluster.sh (start|stop|status)"
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   echo "env HIVEMALL_HOME not defined"
   exit 1
 fi

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/mixserv_daemon.sh
----------------------------------------------------------------------
diff --git a/bin/mixserv_daemon.sh b/bin/mixserv_daemon.sh
index f7af4d9..74a7fba 100755
--- a/bin/mixserv_daemon.sh
+++ b/bin/mixserv_daemon.sh
@@ -26,7 +26,7 @@ if [ $# -ne 1 ]; then
   exit 1
 fi
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/start_mixserv.sh
----------------------------------------------------------------------
diff --git a/bin/start_mixserv.sh b/bin/start_mixserv.sh
index 6de0c29..f3b5493 100755
--- a/bin/start_mixserv.sh
+++ b/bin/start_mixserv.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/7956b5f2/bin/stop_mixserv.sh
----------------------------------------------------------------------
diff --git a/bin/stop_mixserv.sh b/bin/stop_mixserv.sh
index ef860c0..b5eb809 100755
--- a/bin/stop_mixserv.sh
+++ b/bin/stop_mixserv.sh
@@ -18,7 +18,7 @@
 # under the License.
 #
 
-if [ "$HIVEMALL_HOME" == "" ]; then
+if [ "$HIVEMALL_HOME" = "" ]; then
   if [ -e ../bin/${0##*/} ]; then
     HIVEMALL_HOME=".."
   elif [ -e ./bin/${0##*/} ]; then

Reply via email to