From d970599fe6ce3a301e4c6a598bc15bfd357de026 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Wed, 11 Feb 2015 17:53:10 -0800 Subject: [PATCH] ErrMachineNotExist msg: Fix grammar, more helpful This adds the word "does" to make it sound nicer and it also asks if the user ran `boot2docker init`. --- driver/driver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/driver.go b/driver/driver.go index 525ee9b..1efa0b9 100644 --- a/driver/driver.go +++ b/driver/driver.go @@ -52,7 +52,7 @@ var ( machines map[string]InitFunc ErrNotSupported = errors.New("driver not supported") - ErrMachineNotExist = errors.New("machine not exist") + ErrMachineNotExist = errors.New("machine does not exist (Did you run `boot2docker init`?)") ErrMachineExist = errors.New("machine already exists") ErrPrerequisites = errors.New("prerequisites for machine not satisfied (hypervisor installed?)") )