github.com/rsampaio/docker@v0.7.2-0.20150827203920-fdc73cc3fc31/daemon/execdriver/native/driver_unsupported.go (about) 1 // +build !linux 2 3 package native 4 5 import ( 6 "fmt" 7 8 "github.com/docker/docker/daemon/execdriver" 9 ) 10 11 // NewDriver returns a new native driver, called from NewDriver of execdriver. 12 func NewDriver(root, initPath string) (execdriver.Driver, error) { 13 return nil, fmt.Errorf("native driver not supported on non-linux") 14 }