Skip to content

Commit 992fc80

Browse files
CopilotShreckYe
andauthored
fix: exclude empty parent projects from dokka dependencies (#136)
Agent-Logs-Url: https://github.com/huanshankeji/compose-multiplatform-html-unified/sessions/dddddeee-962b-4995-84eb-96e464ade47b Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ShreckYe <27768951+ShreckYe@users.noreply.github.com>
1 parent 737e164 commit 992fc80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ apiValidation {
2727
}
2828

2929
dependencies {
30-
subprojects.filter { it.name != demoProjectName }.forEach {
30+
subprojects.filter { it.name != demoProjectName && it.buildFile.exists() }.forEach {
3131
dokka(it)
3232
}
3333
}

0 commit comments

Comments
 (0)