1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

Windows: NewDriver() re-baseline parms

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 50b4079b5fdb9d966f49946c8db36c81648c1dee
Component: engine
This commit is contained in:
John Howard
2015-05-16 11:38:19 -07:00
parent 525d9c3ed7
commit 4e71899e7f

View File

@@ -10,7 +10,7 @@ import (
"github.com/docker/docker/pkg/sysinfo"
)
func NewDriver(name, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
switch name {
case "windows":
return windows.NewDriver(root, initPath)