Procházet zdrojové kódy

Fix error string about containers feature

Signed-off-by: Darren Stahl <darst@microsoft.com>
Darren Stahl před 7 roky
rodič
revize
31405b556f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      daemon/daemon_windows.go

+ 1 - 1
daemon/daemon_windows.go

@@ -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