Browse code

Fix error string about containers feature

Signed-off-by: Darren Stahl <darst@microsoft.com>

Darren Stahl authored on 2017/09/26 04:39:27
Showing 1 changed files
... ...
@@ -235,7 +235,7 @@ func checkSystem() error {
235 235
 
236 236
 	vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
237 237
 	if vmcompute.Load() != nil {
238
-		return fmt.Errorf("Failed to load vmcompute.dll. Ensure that the Containers role is installed.")
238
+		return fmt.Errorf("failed to load vmcompute.dll, ensure that the Containers feature is installed")
239 239
 	}
240 240
 
241 241
 	return nil