From 91df835c1b2ba2d89bbe92d00f87e1517674917d Mon Sep 17 00:00:00 2001 From: Mike Marchetti Date: Tue, 17 Oct 2017 13:47:48 -0400 Subject: [PATCH] bug 385: version sort tags to get latest Signed-off-by: Mike Marchetti --- installers/install_osm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/install_osm.sh b/installers/install_osm.sh index 6e114be2..1ea15e2a 100755 --- a/installers/install_osm.sh +++ b/installers/install_osm.sh @@ -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" -- 2.25.1