You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/04/28 00:04:18 UTC

incubator-zeppelin git commit: Fixes a typo in conf_dir check

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 4fa3db81d -> f4bc662d3


Fixes a typo in conf_dir check

bin/zeppelin.sh checks for conf_dir's existence. There's a typo as {$config_dir}.

Author: rahul agarwal <ra...@ragarwal.me>

Closes #51 from rahul67/hotfix/zeppelin-script-typo and squashes the following commits:

4e4f7d1 [rahul agarwal] Fixes a typo in config_dir check


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

Branch: refs/heads/master
Commit: f4bc662d39e1e43968147f7e87e39a451f7ad039
Parents: 4fa3db8
Author: rahul agarwal <ra...@ragarwal.me>
Authored: Sun Apr 26 02:59:54 2015 +0530
Committer: Lee moon soo <mo...@apache.org>
Committed: Tue Apr 28 07:04:13 2015 +0900

----------------------------------------------------------------------
 bin/zeppelin.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/f4bc662d/bin/zeppelin.sh
----------------------------------------------------------------------
diff --git a/bin/zeppelin.sh b/bin/zeppelin.sh
index 671673a..d81556c 100755
--- a/bin/zeppelin.sh
+++ b/bin/zeppelin.sh
@@ -29,7 +29,7 @@ function usage() {
 if [[ "$1" == "--config" ]]; then
   shift
   conf_dir="$1"
-  if [[ ! -d "{$conf_dir}" ]]; then
+  if [[ ! -d "${conf_dir}" ]]; then
     echo "ERROR : ${conf_dir} is not a directory"
     echo ${USAGE}
     exit 1