blob: 97839cf3b299dbd01260572783a4b5e7c87b3609 [file] [log] [blame]
// +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")
}