moby--moby/daemon/execdriver/native/driver_unsupported.go

14 lines
237 B
Go

// +build !linux
package native
import (
"fmt"
"github.com/docker/docker/daemon/execdriver"
)
func NewDriver(root, initPath string) (execdriver.Driver, error) {
return nil, fmt.Errorf("native driver not supported on non-linux")
}