Hello, on my
plugin, I want to ignore the execution if the host is not macOS, because it can only work on it.
For the CocoaPods plugin, it’s currently ignoring the execution if the host is not correct.
Trying something basic like, but it’s not enough.
if (!HostManager.hostIsMac) {
tasks.withType(CInteropProcess::class.java).configureEach { cinterop ->
cinterop.enabled = false
}
}