Skip to content
Snippets Groups Projects
Commit 91df835c authored by Mike Marchetti's avatar Mike Marchetti
Browse files

bug 385: version sort tags to get latest


Signed-off-by: default avatarMike Marchetti <mmarchetti@sandvine.com>
parent c5cef405
No related branches found
No related tags found
No related merge requests found
......@@ -385,7 +385,7 @@ if [ -z "$TEST_INSTALLER" ]; then
fi
echo -e "\nGuessing the current stable release"
LATEST_STABLE_DEVOPS=`git -C $TEMPDIR tag -l v[0-9].* | tail -n1`
LATEST_STABLE_DEVOPS=`git -C $TEMPDIR tag -l v[0-9].* | sort -V | tail -n1`
[ -z "$COMMIT_ID" ] && [ -z "$LATEST_STABLE_DEVOPS" ] && echo "Could not find the current latest stable release" && exit 0
echo "Latest tag in devops repo: $LATEST_STABLE_DEVOPS"
[ -z "$COMMIT_ID" ] && [ -n "$LATEST_STABLE_DEVOPS" ] && COMMIT_ID="tags/$LATEST_STABLE_DEVOPS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment