about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-27T00·39+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-27T00·55+0200
commitbd03e639bfdaf5b8919b66d87c683fcaa6ec0aad (patch)
tree405d4e8d0e7dddfdd981a547c8ccf76d10c65cec /main.go
parent9cffd3d1d40e90844394011898f6dd820f7805b7 (diff)
refactor main: Reword empty/nonexistent resource set warning
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 574403cbf9..a4ab56b052 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
 		}