diff --git a/git-cvs2git.sh b/git-cvs2git.sh index 8694c5d..39c6fda 100755 --- a/git-cvs2git.sh +++ b/git-cvs2git.sh @@ -755,9 +755,8 @@ git push --force -u $QUIET origin master # Now create the version and release tag for these files RELEASE=`rpm --queryformat '%{release}\n' --specfile $NAME.spec | head -n 1` # Release is not reliable - if you run on Rocky it comes back EL8, centos 7 - EL7 -# so - confusing!! -# for now - take out the RELEASE from the tag -TAG=$VERSION +# So, we need to just take the build part (first word) +TAG=$VERSION"-"${RELEASE%.*} git tag -a $TAG -m "$COMMENT" git push origin $TAG $QUIET