From 2e3b38cf159515a8cbbe0e9f3500ec4352c7afd2 Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Wed, 21 Apr 2021 16:31:32 +0200 Subject: [PATCH] Clean the build script a bit --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2a1626a..cbb556b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -141,13 +141,13 @@ allprojects { from(this) } } - val ModProperties = mapOf( + val modProperties = mapOf( "mod_version" to (rootProject.version as String), "minecraft_version" to mcBase ) - inputs.properties(ModProperties) + inputs.properties(modProperties) filesNotMatching(listOf("*.png")) { - expand(ModProperties) + expand(modProperties) } } }