This is an automated email from the ASF dual-hosted git repository.
tcodehuber028 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new 7a1d6e457 build_amoro BUILD_CMD error (#2844)
7a1d6e457 is described below
commit 7a1d6e457c5b4ea83af3494505fc2000f8f6b872
Author: wandongchen <[email protected]>
AuthorDate: Sat May 18 20:54:24 2024 +0800
build_amoro BUILD_CMD error (#2844)
BUILD_CMD for build_armoro is wrong, cannot find dist
---
docker/build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/build.sh b/docker/build.sh
index 724fa9610..1f33faea6 100755
--- a/docker/build.sh
+++ b/docker/build.sh
@@ -203,7 +203,7 @@ function build_amoro() {
local
DIST_FILE=${PROJECT_HOME}/amoro-ams/dist/target/amoro-${AMORO_VERSION}-bin.zip
if [ ! -f "${DIST_FILE}" ]; then
- local BUILD_CMD="mvn clean package -am -e -pl ams/dist -DskipTests "
+ local BUILD_CMD="mvn clean package -am -e -pl amoro-ams/dist -DskipTests "
echo "Amoro dist package is not exists in ${DIST_FILE}"
echo "please check file or run '$BUILD_CMD' first"
fi