You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by si...@apache.org on 2020/08/09 04:45:19 UTC

[hudi] branch master updated: [MINOR] Fix path to hudi-hive-sync-bundle jars from run_sync_tool.sh (#1937)

This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 3c949d2  [MINOR] Fix path to hudi-hive-sync-bundle jars from run_sync_tool.sh (#1937)
3c949d2 is described below

commit 3c949d2ff5527a698d703f64923095dd931d3b66
Author: Bhavani Sudha Saktheeswaran <bh...@gmail.com>
AuthorDate: Sat Aug 8 21:45:10 2020 -0700

    [MINOR] Fix path to hudi-hive-sync-bundle jars from run_sync_tool.sh (#1937)
---
 hudi-sync/hudi-hive-sync/run_sync_tool.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hudi-sync/hudi-hive-sync/run_sync_tool.sh b/hudi-sync/hudi-hive-sync/run_sync_tool.sh
index d5dc5eb..d5d921e 100755
--- a/hudi-sync/hudi-hive-sync/run_sync_tool.sh
+++ b/hudi-sync/hudi-hive-sync/run_sync_tool.sh
@@ -31,7 +31,7 @@ fi
 
 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 #Ensure we pick the right jar even for hive11 builds
-HUDI_HIVE_UBER_JAR=`ls -c $DIR/../packaging/hudi-hive-sync-bundle/target/hudi-hive-sync-*.jar | grep -v source | head -1`
+HUDI_HIVE_UBER_JAR=`ls -c $DIR/../../packaging/hudi-hive-sync-bundle/target/hudi-hive-sync-*.jar | grep -v source | head -1`
 
 if [ -z "$HADOOP_CONF_DIR" ]; then
   echo "setting hadoop conf dir"