blob: 2b8e9f81a18d0cb59715b437fe49f051fd6c9a8f [file] [log] [blame]
// +build linux,!cgo
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")
}