Skip to content

Commit

Permalink
Fix build versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
ssblur committed Jan 23, 2023
1 parent 97c4fe8 commit 163256c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ allprojects {
archivesBaseName = rootProject.archives_base_name
def matcher = gitVersion() =~ /^v(\d+\.\d+\.\d+).*/
matcher.find()
if(matcher.groupCount() > 1)
if(matcher.groupCount() >= 1)
version = matcher.group(1)
else
version = "dev"
Expand Down

0 comments on commit 163256c

Please sign in to comment.