File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 27
27
28
28
set -eo pipefail
29
29
30
- build_version_prefix=" ${DORIS_BUILD_VERSION_PREFIX-doris} "
31
- build_version_major=" ${DORIS_BUILD_VERSION_MAJOR-0} "
32
- build_version_minor=" ${DORIS_BUILD_VERSION_MINOR-0} "
33
- build_version_patch=" ${DORIS_BUILD_VERSION_PATCH-0} "
34
- build_version_hotfix=" ${DORIS_BUILD_VERSION_HOTFIX-0} "
35
- build_version_rc_version=" ${DORIS_BUILD_VERSION_RC_VERSION-" " } "
30
+ vendor=doris
31
+ if [[ $1 != " " ]]; then
32
+ vendor=$1
33
+ fi
34
+
35
+ build_version_prefix=" ${vendor} "
36
+ build_version_major=4
37
+ build_version_minor=0
38
+ build_version_patch=0
39
+ build_version_hotfix=0
40
+ build_version_rc_version=" rc02"
36
41
37
42
build_version=" ${build_version_prefix} -${build_version_major} .${build_version_minor} .${build_version_patch} "
38
43
if [[ ${build_version_hotfix} -gt 0 ]]; then
You can’t perform that action at this time.
0 commit comments