release.sh: correctly sort releases to compute latest stable and rc

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2016-12-11 16:58:58 +01:00
parent a92fa1084b
commit da08ff2d01
1 changed files with 2 additions and 2 deletions

View File

@ -289,11 +289,11 @@ function git_release () {
function get_last_rc () {
git tag | grep -E '^v([0-9][\.-]){3}rc' | sort -n | tail -n1
git tag | grep -E '^v([0-9][\.-]){3}rc' | sort -V | tail -n1
}
function get_last_stable () {
git tag | grep -E '^v([0-9][\.])+' | grep -v '\-rc' | sort -n | tail -n1
git tag | grep -E '^v([0-9][\.])+' | grep -v '\-rc' | sort -V | tail -n1
}
function update_website_releases_info() {