Skip to content

Commit 927f8d2

Browse files
committed
Fixes Versioning breaking with leading v
1 parent 4cd3865 commit 927f8d2

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)