Skip to content

Commit

Permalink
Fix error string about containers feature
Browse files Browse the repository at this point in the history
Signed-off-by: Darren Stahl <darst@microsoft.com>
  • Loading branch information
darstahl authored and salah-khan committed Nov 15, 2017
1 parent d2a0c88 commit e03fd95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/daemon_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e03fd95

Please sign in to comment.