mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8db09ff629
Signed-off-by: John Howard <jhoward@microsoft.com>
13 lines
243 B
Go
13 lines
243 B
Go
// +build !windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
func NewDriver(root, initPath string) (execdriver.Driver, error) {
|
|
return nil, fmt.Errorf("Windows driver not supported on non-Windows")
|
|
}
|