From 13c84136f6678b116890876eb3c6334c9f70c262 Mon Sep 17 00:00:00 2001 From: wforget <643348094@qq.com> Date: Mon, 21 Oct 2024 10:02:54 +0800 Subject: [PATCH] [KYUUBI #6757] Pass build args to extra spark engine build command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # :mag: Description ## Issue References ๐Ÿ”— This pull request fixes # ## Describe Your Solution ๐Ÿ”ง Pass build args to extra spark engine build command ## Types of changes :bookmark: - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐Ÿงช #### Behavior Without This Pull Request :coffin: #### Behavior With This Pull Request :tada: #### Related Unit Tests --- # Checklist ๐Ÿ“ - [X] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6757 from wForget/minor2. Closes #6757 5b373d2fa [wforget] Pass build args to extra spark engine build command Authored-by: wforget <643348094@qq.com> Signed-off-by: Bowen Liang --- build/dist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/dist b/build/dist index 252d53c85..b637af822 100755 --- a/build/dist +++ b/build/dist @@ -256,6 +256,8 @@ for arg in "$@"; do FILTERED_ARGS+=("${arg//scala-2.12/scala-2.13}") elif [[ $arg == *scala-2.13* ]]; then FILTERED_ARGS+=("${arg//scala-2.13/scala-2.12}") + else + FILTERED_ARGS+=("$arg") fi done