Skip to content

Commit 352c8ba

Browse files
authored
Merge pull request #83 from GitLiveApp/carthage-mac-only
Added if statement for cases where we run on linux.
2 parents 0caaa62 + ef2fa42 commit 352c8ba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle.kts

+4-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,10 @@ subprojects {
163163
}
164164
}
165165

166-
withType(org.jetbrains.kotlin.gradle.tasks.CInteropProcess::class) {
167-
dependsOn("carthageBootstrap")
166+
if (Os.isFamily(Os.FAMILY_MAC)) {
167+
withType(org.jetbrains.kotlin.gradle.tasks.CInteropProcess::class) {
168+
dependsOn("carthageBootstrap")
169+
}
168170
}
169171

170172
create("carthageClean", Delete::class.java) {

0 commit comments

Comments
 (0)