diff --git a/detect/detect_other.go b/detect/detect_other.go new file mode 100644 index 0000000..98aa9e4 --- /dev/null +++ b/detect/detect_other.go @@ -0,0 +1,13 @@ +//go:build !linux && !freebsd && !openbsd + +package detect + +// candidates returns an empty list on unsupported platforms. +func candidates() []managerFactory { + return nil +} + +// allManagers returns an empty list on unsupported platforms. +func allManagers() []managerFactory { + return nil +}