This is an automated email from the ASF dual-hosted git repository.
bowenliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 13c84136f6 [KYUUBI #6757] Pass build args to extra spark engine build
command
13c84136f6 is described below
commit 13c84136f6678b116890876eb3c6334c9f70c262
Author: wforget <[email protected]>
AuthorDate: Mon Oct 21 10:02:54 2024 +0800
[KYUUBI #6757] Pass build args to extra spark engine build command
# :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 <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
---
build/dist | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build/dist b/build/dist
index 252d53c857..b637af8225 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