Skip to content

Commit

Permalink
Fixed bug with version name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laxystem committed Dec 14, 2023
1 parent 6e84c79 commit 51cceba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jetbrains.kotlin.util.removeSuffixIfPresent

plugins {
application
Expand All @@ -10,7 +11,7 @@ plugins {
}

group = "quest.laxla"
version = file(".version").readText()
version = file(".version").readText().removeSuffixIfPresent("\n")

repositories {
google()
Expand Down

0 comments on commit 51cceba

Please sign in to comment.