Stop truncating the version string in the gradle build file.

This commit is contained in:
天クマ 2025-12-15 00:27:03 -03:00
commit 6250c48d81

View file

@ -4,7 +4,7 @@ plugins {
} }
group = "io.github.adrianvic" group = "io.github.adrianvic"
version = System.getenv("NEMESIS_VERSION_NAME")?.take(7) ?: "1.0.3-SNAPSHOT" version = System.getenv("NEMESIS_VERSION_NAME") ?: "1.0.3-SNAPSHOT"
repositories { repositories {
mavenCentral() mavenCentral()