This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new e437228dc [CELEBORN-1104][DOC] Fix SBT documentation incorrect command
e437228dc is described below
commit e437228dc8a0ec41e8283d326a000e93f20ceca9
Author: sychen <[email protected]>
AuthorDate: Wed Nov 1 17:00:09 2023 +0800
[CELEBORN-1104][DOC] Fix SBT documentation incorrect command
### What changes were proposed in this pull request?
### Why are the changes needed?
### Does this PR introduce _any_ user-facing change?
### How was this patch tested?
Closes #2062 from cxzl25/CELEBORN-1104.
Authored-by: sychen <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
docs/developers/sbt.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/developers/sbt.md b/docs/developers/sbt.md
index c949d0db6..484241f68 100644
--- a/docs/developers/sbt.md
+++ b/docs/developers/sbt.md
@@ -104,7 +104,7 @@ By using these profiles, you can easily switch between
different client modules
For example, you can build the Spark 3.3 client assembly jar by running the
following commands:
```shell
-$ ./build/sbt
+$ ./build/sbt -Pspark-3.3
> project celeborn-client-spark-3-shaded
> assembly
@@ -115,7 +115,7 @@ $ ./build/sbt -Pspark-3.3
celeborn-client-spark-3-shaded/assembly
Similarly, you can build the Flink 1.15 client assembly jar using the
following commands:
```shell
-$ ./build/sbt
+$ ./build/sbt -Pflink-1.15
> project celeborn-client-flink-1_15-shaded
> assembly