Process files that are not .png ones only to fix the mods.toml version field.
This commit is contained in:
parent
e39df66c13
commit
47b9220ade
|
@ -83,7 +83,7 @@ allprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val modVersionPair: Pair<String, String> = "mod_version" to (rootProject.version as String)
|
val modVersionPair: Pair<String, String> = "mod_version" to (rootProject.version as String)
|
||||||
filesMatching(listOf("*.json", "*.toml")) {
|
filesNotMatching("*.png") {
|
||||||
expand(mutableMapOf(modVersionPair))
|
expand(mutableMapOf(modVersionPair))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue