Skip to content

Commit 9d37445

Browse files
authored
Don't mention API directory path in tasks description (#229)
Closes #228
1 parent f677423 commit 9d37445

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/BinaryCompatibilityValidatorPlugin.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ private fun Project.configureCheckTasks(
310310
val apiDump = task<CopyFile>(targetConfig.apiTaskName("Dump")) {
311311
isEnabled = apiCheckEnabled(projectName, extension) && apiBuild.map { it.enabled }.getOrElse(true)
312312
group = "other"
313-
description = "Syncs API from build dir to ${targetConfig.apiDir} dir for $projectName"
313+
description = "Syncs the API file for $projectName"
314314
from = apiBuildDir.get().resolve(dumpFileName)
315315
to = apiCheckDir.get().resolve(dumpFileName)
316316
dependsOn(apiBuild)
@@ -432,7 +432,7 @@ private class KlibValidationPipelineBuilder(
432432
klibMergeDir: File
433433
) = project.task<CopyFile>(klibDumpConfig.apiTaskName("Dump")) {
434434
isEnabled = klibAbiCheckEnabled(project.name, extension)
435-
description = "Syncs a KLib ABI dump from a build dir to the ${klibDumpConfig.apiDir} dir for ${project.name}"
435+
description = "Syncs the KLib ABI file for ${project.name}"
436436
group = "other"
437437
from = klibMergeDir.resolve(klibDumpFileName)
438438
to = klibApiDir.get().resolve(klibDumpFileName)

0 commit comments

Comments
 (0)