File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ private fun Project.configureCheckTasks(
310
310
val apiDump = task<CopyFile >(targetConfig.apiTaskName(" Dump" )) {
311
311
isEnabled = apiCheckEnabled(projectName, extension) && apiBuild.map { it.enabled }.getOrElse(true )
312
312
group = " other"
313
- description = " Syncs API from build dir to ${targetConfig.apiDir} dir for $projectName "
313
+ description = " Syncs the API file for $projectName "
314
314
from = apiBuildDir.get().resolve(dumpFileName)
315
315
to = apiCheckDir.get().resolve(dumpFileName)
316
316
dependsOn(apiBuild)
@@ -432,7 +432,7 @@ private class KlibValidationPipelineBuilder(
432
432
klibMergeDir : File
433
433
) = project.task<CopyFile >(klibDumpConfig.apiTaskName(" Dump" )) {
434
434
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} "
436
436
group = " other"
437
437
from = klibMergeDir.resolve(klibDumpFileName)
438
438
to = klibApiDir.get().resolve(klibDumpFileName)
You can’t perform that action at this time.
0 commit comments