From bba82e66ac548a21d7c43f3a23b388bea76c9a3c Mon Sep 17 00:00:00 2001 From: Evan Hazlett Date: Thu, 5 Feb 2015 18:22:33 -0500 Subject: [PATCH] only show hyper-v on windows Signed-off-by: Evan Hazlett --- commands.go | 1 + drivers/hyperv/hyperv.go | 1 + 2 files changed, 2 insertions(+) create mode 100644 drivers/hyperv/hyperv.go diff --git a/commands.go b/commands.go index fb77cd0184..4d311aaf9d 100644 --- a/commands.go +++ b/commands.go @@ -18,6 +18,7 @@ import ( _ "github.com/docker/machine/drivers/azure" _ "github.com/docker/machine/drivers/digitalocean" _ "github.com/docker/machine/drivers/google" + _ "github.com/docker/machine/drivers/hyperv" _ "github.com/docker/machine/drivers/none" _ "github.com/docker/machine/drivers/openstack" _ "github.com/docker/machine/drivers/rackspace" diff --git a/drivers/hyperv/hyperv.go b/drivers/hyperv/hyperv.go new file mode 100644 index 0000000000..5683645238 --- /dev/null +++ b/drivers/hyperv/hyperv.go @@ -0,0 +1 @@ +package hyperv