pan3793 commented on code in PR #4647:
URL: https://github.com/apache/kyuubi/pull/4647#discussion_r1155246418
##########
build/mvnd:
##########
@@ -95,6 +95,7 @@ function get_os_arch() {
# install mvnd under the build/ folder if needed.
function install_mvnd() {
local MVND_VERSION=$(grep "<mvnd.version>" "${_DIR}/../pom.xml" | head -n1 |
awk -F '[<>]' '{print $3}')
+ local MVND_MVN_SHORT_VERSION=$(grep "<mvnd.maven.short.version>"
"${_DIR}/../pom.xml" | head -n1 | awk -F '[<>]' '{print $3}')
Review Comment:
Change and move it to the next line
```suggestion
local MVND_MVN_SHORT_VERSION=$(echo $MVN_VERSION | awk -F . '{print $1$2}')
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]