Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Recursively resolve directories using `.asFileTree.files` instead of `.files`

Signed-off-by: solonovamax <[email protected]>
  • Loading branch information
solonovamax committed Oct 16, 2024
1 parent fe224d6 commit 199d2a7
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ internal object DokkaSourceSetBuilder {
sourceSetID = build(spec.sourceSetId.get()),

// files
classpath = spec.classpath.files.toList(),
includes = spec.includes.files,
samples = spec.samples.files,
sourceRoots = spec.sourceRoots.files,
suppressedFiles = spec.suppressedFiles.files,
classpath = spec.classpath.asFileTree.files.toList(),
includes = spec.includes.asFileTree.files,
samples = spec.samples.asFileTree.files,
sourceRoots = spec.sourceRoots.asFileTree.files,
suppressedFiles = spec.suppressedFiles.asFileTree.files,
)
}

Expand Down

0 comments on commit 199d2a7

Please sign in to comment.