From f53a44c07e21c0c451bfa3bc2cc6a1b67938068c Mon Sep 17 00:00:00 2001 From: Jeremy Rickard Date: Wed, 24 Jul 2019 11:46:32 -0600 Subject: [PATCH] command-windows referenced old interface from duffle (CommandDriver) --- driver/command/command_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/command/command_windows.go b/driver/command/command_windows.go index 37a9e5a4..fe70ebc3 100644 --- a/driver/command/command_windows.go +++ b/driver/command/command_windows.go @@ -8,7 +8,7 @@ import ( ) // CheckDriverExists checks to see if the named driver exists -func (d *CommandDriver) CheckDriverExists() bool { +func (d *Driver) CheckDriverExists() bool { cmd := exec.Command("where", d.cliName()) cmd.Env = os.Environ() if err := cmd.Run(); err != nil {