mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #34973 from darrenstahlmsft/fixError
Fix error string about containers feature
This commit is contained in:
commit
9feef92874
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue