Fix error string about containers feature

Signed-off-by: Darren Stahl <darst@microsoft.com>
This commit is contained in:
Darren Stahl 2017-09-25 12:39:27 -07:00
parent c982ee805d
commit 31405b556f
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ func checkSystem() error {
vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
if vmcompute.Load() != nil {
return fmt.Errorf("Failed to load vmcompute.dll. Ensure that the Containers role is installed.")
return fmt.Errorf("failed to load vmcompute.dll, ensure that the Containers feature is installed")
}
return nil