Skip to content

Commit

Permalink
Fix an issue with the release process (#1426)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Jul 4, 2019
1 parent ad852d5 commit ed5253d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ git checkout $COMMIT

CURRENT_RELEASE_MAJOR=`echo "${VERSION}" | sed "s/v//g"`
PREVIOUS_VERSION=v`expr ${CURRENT_RELEASE_MAJOR} - 1`
CURRENT_PRERELEASE_MINOR=`git ls-remote --tags | grep pre-${VERSION} | tail -1 | sed "s/.*pre-${VERSION}\.//g"`
CURRENT_PRERELEASE_MINOR=`git ls-remote --tags | grep pre-${VERSION} | sed "s/.*pre-${VERSION}\.//g" | sort -n | tail -1`
GITHUB_URL="https://api.github.com/repos/lynckia/licode"

SHORT_GIT_HASH=`echo ${COMMIT} | cut -c -7`
Expand Down

0 comments on commit ed5253d

Please sign in to comment.