This is an automated email from the ASF dual-hosted git repository.
ethanfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 9620415ae [CELEBORN-1659] Fix sbt make-distribution for cli
9620415ae is described below
commit 9620415ae95962c74726d35dd8010229b36c74ab
Author: Aravind Patnam <[email protected]>
AuthorDate: Fri Oct 18 15:47:01 2024 +0800
[CELEBORN-1659] Fix sbt make-distribution for cli
### What changes were proposed in this pull request?
Fix make-distribution for SBT.
### Why are the changes needed?
same as above
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
ran `./build/make-distribution.sh --sbt-enabled -Pspark-3.5` to ensure it
works
Closes #2822 from akpatnam25/CELEBORN-1659.
Authored-by: Aravind Patnam <[email protected]>
Signed-off-by: mingji <[email protected]>
---
build/make-distribution.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build/make-distribution.sh b/build/make-distribution.sh
index 3133c2f3c..55b419d15 100755
--- a/build/make-distribution.sh
+++ b/build/make-distribution.sh
@@ -275,7 +275,7 @@ function sbt_build_service {
"${BUILD_COMMAND[@]}"
- $SBT "celeborn-master/copyJars;celeborn-worker/copyJars"
+ $SBT
"celeborn-master/copyJars;celeborn-worker/copyJars;celeborn-cli/copyJars"
mkdir -p "$DIST_DIR/jars"
mkdir -p "$DIST_DIR/master-jars"