Files
docker-cli/components/engine/getKernelVersion_darwin.go
Guillaume J. Charmes 56cb20082e Make kernel detection work without suffix
Upstream-commit: c05c91ca3bb69d2c9faa0a2b15bc23b7c2a7bd8a
Component: engine
2013-04-22 18:15:33 -07:00

10 lines
170 B
Go

package docker
import (
"fmt"
)
func getKernelVersion() (*KernelVersionInfo, error) {
return nil, fmt.Errorf("Kernel version detection is not available on darwin")
}