We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc26087 commit e34c912Copy full SHA for e34c912
1 file changed
app/build.gradle.kts
@@ -31,7 +31,7 @@ fun getVersionGitTags(isSolana: Boolean, printForDebugging: Boolean = false): Li
31
return grgit.tag.list().filter {
32
it.name.matches(versionTagsRegex)
33
}.sortedBy {
34
- it.dateTime
+ it.dateTime ?: it.commit.dateTime
35
}.map {
36
if (printForDebugging) {
37
println("${it.name} --- (${it.dateTime})")
0 commit comments