This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch branch-0.x
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/branch-0.x by this push:
new a5d60b728bb [MINOR] Fix the target location for auxlib download in
hudi CLI (#11940)
a5d60b728bb is described below
commit a5d60b728bbc36e156b402a628ef3c7d0144881f
Author: Prabodh Agarwal <[email protected]>
AuthorDate: Fri Sep 13 08:08:15 2024 +0530
[MINOR] Fix the target location for auxlib download in hudi CLI (#11940)
---
packaging/hudi-cli-bundle/hudi-cli-with-bundle.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packaging/hudi-cli-bundle/hudi-cli-with-bundle.sh
b/packaging/hudi-cli-bundle/hudi-cli-with-bundle.sh
index 50880d9a01d..380866b17f5 100755
--- a/packaging/hudi-cli-bundle/hudi-cli-with-bundle.sh
+++ b/packaging/hudi-cli-bundle/hudi-cli-with-bundle.sh
@@ -38,9 +38,9 @@ HUDI_CONF_DIR="${DIR}"/conf
HUDI_AUX_LIB="${DIR}"/auxlib
if [ ! -d $HUDI_AUX_LIB ]; then
- echo "Downloading necessary auxiliary jars for Hudi CLI"
- wget
https://repo1.maven.org/maven2/org/glassfish/jakarta.el/$JAKARTA_EL_VERSION/jakarta.el-$JAKARTA_EL_VERSION.jar
-P auxlib
- wget
https://repo1.maven.org/maven2/jakarta/el/jakarta.el-api/$JAKARTA_EL_VERSION/jakarta.el-api-$JAKARTA_EL_VERSION.jar
-P auxlib
+ echo "Downloading necessary auxiliary jars for Hudi CLI to $HUDI_AUX_LIB"
+ wget
https://repo1.maven.org/maven2/org/glassfish/jakarta.el/$JAKARTA_EL_VERSION/jakarta.el-$JAKARTA_EL_VERSION.jar
-P $HUDI_AUX_LIB
+ wget
https://repo1.maven.org/maven2/jakarta/el/jakarta.el-api/$JAKARTA_EL_VERSION/jakarta.el-api-$JAKARTA_EL_VERSION.jar
-P $HUDI_AUX_LIB
fi
. "${DIR}"/conf/hudi-env.sh