Skip to content

Commit 172e1d4

Browse files
committed
Fix version replacement in build.gradle.kts to include closing quote
1 parent 45da08f commit 172e1d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ fun replaceVersionInPluginUtil(ver: String) {
543543
ant.withGroovyBuilder {
544544
"replaceregexp"(
545545
"match" to """(const val PLUGIN_VERSION = ")(\d+\.\d+\.\d+)((?:-\S+)*)""",
546-
"replace" to "\\1$ver",
546+
"replace" to "\\1$ver\"",
547547
"encoding" to encoding,
548548
"flags" to "g",
549549
) {

0 commit comments

Comments
 (0)