This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-4.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit e031d4e6ae5d8d0a827aad4e54cd7de51a5f77ca Author: yiguolei <[email protected]> AuthorDate: Mon Sep 15 11:11:10 2025 +0800 4.0.0-rc02 --- gensrc/script/gen_build_version.sh | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/gensrc/script/gen_build_version.sh b/gensrc/script/gen_build_version.sh index 36f1072201e..6366835ed81 100755 --- a/gensrc/script/gen_build_version.sh +++ b/gensrc/script/gen_build_version.sh @@ -27,12 +27,17 @@ set -eo pipefail -build_version_prefix="${DORIS_BUILD_VERSION_PREFIX-doris}" -build_version_major="${DORIS_BUILD_VERSION_MAJOR-0}" -build_version_minor="${DORIS_BUILD_VERSION_MINOR-0}" -build_version_patch="${DORIS_BUILD_VERSION_PATCH-0}" -build_version_hotfix="${DORIS_BUILD_VERSION_HOTFIX-0}" -build_version_rc_version="${DORIS_BUILD_VERSION_RC_VERSION-""}" +vendor=doris +if [[ $1 != "" ]]; then + vendor=$1 +fi + +build_version_prefix="${vendor}" +build_version_major=4 +build_version_minor=0 +build_version_patch=0 +build_version_hotfix=0 +build_version_rc_version="rc02" build_version="${build_version_prefix}-${build_version_major}.${build_version_minor}.${build_version_patch}" if [[ ${build_version_hotfix} -gt 0 ]]; then --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
