mirror of
https://github.com/gogrlx/snack.git
synced 2026-04-02 05:08:42 -07:00
ports/capabilities_openbsd.go duplicated autoremove, clean, fileList, and owner already defined in ports_openbsd.go, breaking OpenBSD builds. detect/detect_other.go build tag didn't exclude windows, conflicting with detect_windows.go declarations.
14 lines
311 B
Go
14 lines
311 B
Go
//go:build !linux && !freebsd && !openbsd && !darwin && !windows
|
|
|
|
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
|
|
}
|