diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-27T00·39+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-27T00·55+0200 |
commit | bd03e639bfdaf5b8919b66d87c683fcaa6ec0aad (patch) | |
tree | 405d4e8d0e7dddfdd981a547c8ccf76d10c65cec /main.go | |
parent | 9cffd3d1d40e90844394011898f6dd820f7805b7 (diff) |
refactor main: Reword empty/nonexistent resource set warning
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go index 574403cbf929..a4ab56b052c0 100644 --- a/main.go +++ b/main.go @@ -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 } |