Skip to content

Commit

Permalink
chore: fix versionBump after diktat formatting broke it (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmruiz authored Sep 30, 2024
1 parent 0186b23 commit f0125c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ tasks {
doLast {
val newVersion = rootProject.findProperty("exactVersion") ?: generateVersion()
val oldContent = buildFile.readText()
val newContent = oldContent.replace("""="$version"""", """="$newVersion"""")
val newContent = oldContent.replace(""" = "$version"""", """ = "$newVersion"""")
buildFile.writeText(newContent)
}
}
Expand Down

0 comments on commit f0125c8

Please sign in to comment.