From 3fed87621f9e57366768c365f326ffca6ad3a779 Mon Sep 17 00:00:00 2001 From: JRoy <10731363+JRoy@users.noreply.github.com> Date: Sat, 5 Jul 2025 14:50:56 -0700 Subject: [PATCH] Fix command data task --- build-logic/src/main/kotlin/CommandDataTask.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/src/main/kotlin/CommandDataTask.kt b/build-logic/src/main/kotlin/CommandDataTask.kt index fa026958863..effc3f1d28a 100644 --- a/build-logic/src/main/kotlin/CommandDataTask.kt +++ b/build-logic/src/main/kotlin/CommandDataTask.kt @@ -14,7 +14,7 @@ abstract class CommandDataTask : DefaultTask() { // i promise i will be safe @Suppress("UNCHECKED_CAST") @TaskAction - private fun harvest() { + fun harvest() { val pluginYml = project.file("src/main/resources/plugin.yml") if (!pluginYml.exists()) { logger.warn("No plugin.yml found to harvest")