Skip to content

Commit

Permalink
Fix error massage typo (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
smhmd committed Apr 9, 2020
1 parent fb4e45f commit e0f648e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/host/host_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func getHostData(dst, profile string) (*hostFile, error) {
}
_, ok := h.profiles[profile]
if profile != "" && !ok {
return h, fmt.Errorf("profile '%s' doesn't exists in file", profile)
return h, fmt.Errorf("unknown profile '%s'", profile)
}

return h, nil
Expand Down

0 comments on commit e0f648e

Please sign in to comment.