Skip to content

Commit 45f960c

Browse files
authored
[release/0.8] packaging: Add version suffix to build version (#2913)
This was a mistake since version suffix should always be appended Signed-off-by: Eli Uriegas <[email protected]> (cherry picked from commit 6631b74) Signed-off-by: Eli Uriegas <[email protected]>
1 parent 291f7e2 commit 45f960c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packaging/pkg_helpers.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ setup_build_version() {
132132
# Set build version based on tag if on tag
133133
if [[ -n "${CIRCLE_TAG}" ]]; then
134134
# Strip tag
135-
export BUILD_VERSION="$(echo "${CIRCLE_TAG}" | sed -e 's/^v//' -e 's/-.*$//')"
135+
export BUILD_VERSION="$(echo "${CIRCLE_TAG}" | sed -e 's/^v//' -e 's/-.*$//')${VERSION_SUFFIX}"
136136
fi
137137
}
138138

0 commit comments

Comments
 (0)