You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@s2graph.apache.org by st...@apache.org on 2016/12/02 09:57:14 UTC

[14/17] incubator-s2graph git commit: fix

fix


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

Branch: refs/heads/master
Commit: c2a45dc8cfd670b24e00c94c8b6d6260ea30c989
Parents: da2a031
Author: Injun Song <ij...@gmail.com>
Authored: Fri Dec 2 16:56:47 2016 +0900
Committer: Injun Song <ij...@gmail.com>
Committed: Fri Dec 2 16:56:47 2016 +0900

----------------------------------------------------------------------
 .travis/install-hbase.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s2graph/blob/c2a45dc8/.travis/install-hbase.sh
----------------------------------------------------------------------
diff --git a/.travis/install-hbase.sh b/.travis/install-hbase.sh
index c47c10e..5851b5b 100755
--- a/.travis/install-hbase.sh
+++ b/.travis/install-hbase.sh
@@ -1,8 +1,8 @@
 #!/usr/bin/env sh
 
-set -e
+set -xe
 
-if [ ! -d $HOME/hbase/bin ]; then
+if [ ! -d "$HOME/hbase/bin" ]; then
   cd $HOME && wget -q -O - http://mirror.navercorp.com/apache/hbase/stable/hbase-$HBASE_VERSION-bin.tar.gz | tar xz
   ln -s $HOME/hbase-$HBASE_VERSION $HOME/hbase
 fi