Skip to content

Commit

Permalink
Fix error in github release script
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 560218016
Change-Id: Iaa280a89f0c222384777b91a1204c42bc31e7c45
  • Loading branch information
morambro authored and copybara-github committed Aug 25, 2023
1 parent b05aef4 commit 13a517f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kokoro/create_github_release_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if [[ "${IS_KOKORO}" == "true" ]] ; then
fi

readonly VERSION_VALUE_IN_VERSION_FILE="$(cat VERSION)"
if [[ ! "${VERSION_VALUE_IN_VERSION_FILE}" == "${RELEASE_VERSION}"]]; then
if [[ ! "${VERSION_VALUE_IN_VERSION_FILE}" == "${RELEASE_VERSION}" ]]; then
echo "InvalidArgumentError: RELEASE_VERSION must coincide with VERSION" >&2
echo "Found:" >&2
echo " RELEASE_VERSION: ${RELEASE_VERSION}" >&2
Expand Down

0 comments on commit 13a517f

Please sign in to comment.