It seems that the only place were OpenBSD support would need to be added is at [PlatformHelper.kt](https://github.com/node-gradle/gradle-node-plugin/blob/4d083a7d749908291872211b77ec007a2fff0af3/src/main/kotlin/com/github/gradle/node/util/PlatformHelper.kt) If you would add `name.contains("openbsd") -> "linux"` And also (for completeness) ``` name.contains("netbsd") -> "linux" name.contains("dragonflybsd") -> "linux" ```