Skip to content

Commit caf22a7

Browse files
committed
Merge pull request #409 from JLLeitschuh/fix/versioningBreak
Fixes Versioning breaking with leading v
2 parents 4cd3865 + 927f8d2 commit caf22a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def getVersionName = { ->
2626
commandLine 'git', 'describe', '--tags'
2727
standardOutput = stdout
2828
}
29-
return stdout.toString().trim()
29+
return stdout.toString().trim().substring(1)
3030
}
3131

3232
allprojects {

0 commit comments

Comments
 (0)