mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
fix: Capture self-closing tag with space before slash
This commit is contained in:
parent
6d15f383d1
commit
d8f8264b34
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import org.gradle.api.Task
|
|||
import org.gradle.api.tasks.TaskProvider
|
||||
import java.io.File
|
||||
|
||||
private val emptyResourcesElement = "<resources>\\s*</resources>|<resources/>".toRegex()
|
||||
private val emptyResourcesElement = "<resources>\\s*</resources>|<resources\\s*/>".toRegex()
|
||||
|
||||
fun Project.registerLocalesConfigTask(outputResourceDir: File): TaskProvider<Task> {
|
||||
return tasks.register("generateLocalesConfig") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue