From e4ef6d4098d70a92de756eb325be95a7b61d3d05 Mon Sep 17 00:00:00 2001 From: Jean-Laurent de Morlhon Date: Tue, 9 Feb 2016 16:56:28 -0800 Subject: [PATCH] Fix #2995 Signed-off-by: Jean-Laurent de Morlhon --- drivers/hyperv/hyperv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hyperv/hyperv.go b/drivers/hyperv/hyperv.go index 614d542d11..e533b8eb59 100644 --- a/drivers/hyperv/hyperv.go +++ b/drivers/hyperv/hyperv.go @@ -239,7 +239,7 @@ func (d *Driver) chooseVirtualSwitch() (string, error) { if d.VSwitch == "" { if len(switches) < 1 { - return "", fmt.Errorf("no vswitch found") + return "", fmt.Errorf("no vswitch found. A valid vswitch must be available for this command to run. Check https://docs.docker.com/machine/drivers/hyper-v/") } return switches[0], nil