Repository: bigtop Updated Branches: refs/heads/master 7cc10e1a1 -> e55414e9a
BIGTOP-1729: Fix extra underscore in component path var Signed-off-by: YoungWoo Kim <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/e55414e9 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/e55414e9 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/e55414e9 Branch: refs/heads/master Commit: e55414e9a7768ed98721404fc8cb7bdf3a535fcb Parents: 7cc10e1 Author: Luciano Resende <[email protected]> Authored: Wed Mar 4 21:31:54 2015 -0800 Committer: YoungWoo Kim <[email protected]> Committed: Thu Mar 19 11:14:47 2015 +0900 ---------------------------------------------------------------------- bigtop-packages/src/common/hive/install_hive.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/e55414e9/bigtop-packages/src/common/hive/install_hive.sh ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/hive/install_hive.sh b/bigtop-packages/src/common/hive/install_hive.sh index 7facf15..cb2009d 100755 --- a/bigtop-packages/src/common/hive/install_hive.sh +++ b/bigtop-packages/src/common/hive/install_hive.sh @@ -81,10 +81,10 @@ while true ; do PYTHON_DIR=$2 ; shift 2 ;; --hcatalog-dir) - HCATALOG__DIR=$2 ; shift 2 + HCATALOG_DIR=$2 ; shift 2 ;; --installed-hcatalog-dir) - INSTALLED_HCATALOG__DIR=$2 ; shift 2 + INSTALLED_HCATALOG_DIR=$2 ; shift 2 ;; --) shift ; break
