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 aba139a37 [CELEBORN-1018] Fix throw exception when exec 
create-package.sh script
aba139a37 is described below

commit aba139a373726cd5352d74bd9bcbf67c3e21eb5a
Author: xleoken <[email protected]>
AuthorDate: Sun Oct 8 11:32:49 2023 +0800

    [CELEBORN-1018] Fix throw exception when exec create-package.sh script
    
    ### What changes were proposed in this pull request?
    
    when exec the release script, throw exception
    ```
    build/make-distribution.sh --release
    ```
    
    ```
    [WARNING] For this reason, future Maven versions might no longer support 
building such malformed projects.
    [WARNING]
    [ERROR] [ERROR] Could not find the selected project in the reactor: 
:celeborn-client-mr-shaded_2.12
    [ERROR] Could not find the selected project in the reactor: 
:celeborn-client-mr-shaded_2.12 -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, 
please read the following articles:
    [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MavenExecutionException
    ```
    
    ### Why are the changes needed?
    
    Fix bug.
    
    ### Does this PR introduce _any_ user-facing change?
    
    Local tested.
    
    ### How was this patch tested?
    
    Closes #1956 from xleoken/patch.
    
    Authored-by: xleoken <[email protected]>
    Signed-off-by: Cheng Pan <[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 727600912..6dd19e249 100755
--- a/build/make-distribution.sh
+++ b/build/make-distribution.sh
@@ -339,7 +339,7 @@ else
     build_flink_client -Pflink-1.14
     build_flink_client -Pflink-1.15
     build_flink_client -Pflink-1.17
-    build_mr_client mr
+    build_mr_client -Pmr
   else
     ## build release package on demand
     build_service $@

Reply via email to