From 2bd93d62987a690fefe8908ed01ab08ff9d2cc61 Mon Sep 17 00:00:00 2001 From: Sahil Ahuja Date: Wed, 5 Feb 2025 19:14:47 +0530 Subject: [PATCH] #minor version change --- basetag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basetag.sh b/basetag.sh index 7acf05f..907d77f 100755 --- a/basetag.sh +++ b/basetag.sh @@ -14,7 +14,7 @@ # https://gist.github.com/CSTDev/08c127680e3b5fae38c051da3e489351 #get highest tag number containing at least 2 dots -VERSION=`git describe --abbrev=0 --tags --match="v[0-9]*\.*\.*"` +VERSION=`git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.[0-9]*"` #replace . with space so can split into an array VERSION_BITS=(${VERSION//./ })