refactor main: Reword empty/nonexistent resource set warning

This commit is contained in:
Vincent Ambo 2017-10-27 02:39:16 +02:00
parent 9cffd3d1d4
commit bd03e639bf

View file

@ -84,7 +84,7 @@ func templateCommand() {
for _, rs := range *resourceSets {
if len(rs.Resources) == 0 {
fmt.Fprintf(os.Stderr, "Warning: Resource set '%s' contains no valid templates\n", rs.Name)
fmt.Fprintf(os.Stderr, "Warning: Resource set '%s' does not exist or contains no valid templates\n", rs.Name)
continue
}