Skip to content

Commit

Permalink
packaging: Add version suffix to build version
Browse files Browse the repository at this point in the history
This was a mistake since version suffix should always be appended

Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
  • Loading branch information
seemethere committed Jun 25, 2020
1 parent ed888d9 commit 6631b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/pkg_helpers.bash
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ setup_build_version() {
# Set build version based on tag if on tag
if [[ -n "${CIRCLE_TAG}" ]]; then
# Strip tag
export BUILD_VERSION="$(echo "${CIRCLE_TAG}" | sed -e 's/^v//' -e 's/-.*$//')"
export BUILD_VERSION="$(echo "${CIRCLE_TAG}" | sed -e 's/^v//' -e 's/-.*$//')${VERSION_SUFFIX}"
fi
}

Expand Down

0 comments on commit 6631b74

Please sign in to comment.