Skip to content

Commit bc50c9e

Browse files
committed
test-data processor: Add missing escape to chunkFileRegex
1 parent 8f0c79c commit bc50c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/kotlin/TestDataGeneratorTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import kotlin.streams.asSequence
1919
private const val rootDirName = "gateway-chunks-zlib"
2020

2121
private val chunkFolderRegex = Regex("""shard-(\d+)""")
22-
private val chunkFileRegex = Regex("""chunk-(\d+)\.bin.zlib""")
22+
private val chunkFileRegex = Regex("""chunk-(\d+)\.bin\.zlib""")
2323

2424
@DisableCachingByDefault
2525
abstract class TestDataGeneratorTask : DefaultTask() {

0 commit comments

Comments
 (0)