Don't process .ttf files.

This commit is contained in:
Username404-59 2021-04-09 12:23:31 +02:00
parent c98057904a
commit 51662011b8
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ allprojects {
}
}
val modVersionPair: Pair<String, String> = "mod_version" to (rootProject.version as String)
filesNotMatching("*.png") {
filesNotMatching(listOf("*.png", "*/*.ttf")) {
expand(mutableMapOf(modVersionPair))
}
}