File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libraries/tools/abi-validation/src/main/kotlin Expand file tree Collapse file tree 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(
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)
You can’t perform that action at this time.
0 commit comments