From 47b9220adeed2870f92d76fa582eaa431c01ab31 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Thu, 8 Apr 2021 20:32:07 +0200 Subject: [PATCH] Process files that are not .png ones only to fix the mods.toml version field. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index bb679d0..a10130d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -83,7 +83,7 @@ allprojects { } } val modVersionPair: Pair = "mod_version" to (rootProject.version as String) - filesMatching(listOf("*.json", "*.toml")) { + filesNotMatching("*.png") { expand(mutableMapOf(modVersionPair)) } }