github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/daemon/execdriver/windows/unsupported.go (about) 1 // +build !windows 2 3 package windows 4 5 import ( 6 "fmt" 7 8 "github.com/docker/docker/daemon/execdriver" 9 ) 10 11 // NewDriver returns a new execdriver.Driver 12 func NewDriver(root, initPath string) (execdriver.Driver, error) { 13 return nil, fmt.Errorf("Windows driver not supported on non-Windows") 14 }