From 8db638262909a9f92cd0ea175bc3a68b4e3581b5 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Tue, 11 Jun 2024 09:25:57 -0400 Subject: [PATCH] Change autoversion scheme for dev builds We need to be compliant with python versioning for the tools to keep working --- confluent_server/makesetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/makesetup b/confluent_server/makesetup index f20e2d25..de39ea18 100755 --- a/confluent_server/makesetup +++ b/confluent_server/makesetup @@ -2,7 +2,7 @@ cd `dirname $0` VERSION=`git describe|cut -d- -f 1` NUMCOMMITS=`git describe|cut -d- -f 2` if [ "$NUMCOMMITS" != "$VERSION" ]; then - VERSION=$VERSION.dev$NUMCOMMITS.g`git describe|cut -d- -f 3` + VERSION=$VERSION.dev$NUMCOMMITS+g`git describe|cut -d- -f 3` fi echo $VERSION > VERSION sed -e "s/#VERSION#/$VERSION/" setup.py.tmpl > setup.py