Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ogolberg committed Feb 24, 2024
1 parent 0bc492d commit 8a2533b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ abstract class ExpediterExtension(
files.from(file)
}

for (sourceSet in spec.sourceSets) {
val set = project.sourceSet(sourceSet)
sourceSet(set)
dependsOn(set.classesTaskName)
for (sourceSetName in spec.sourceSets) {
val sourceSet = project.sourceSet(sourceSetName)
sourceSet(sourceSet)
dependsOn(sourceSet.classesTaskName)
}
}

Expand Down

0 comments on commit 8a2533b

Please sign in to comment.