about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-02-08T16·23+0100
committerVincent Ambo <tazjin@gmail.com>2017-02-08T16·34+0100
commit756a4c745d111e74c2c673009e14b14b1cd8141f (patch)
tree07cd1f5f9df6a3cc534f9fcb79a290579e25fdd4
parentbace4dd895ac0bcb29388c64f3711de114e36765 (diff)
fix templater: Guard against empty parent reference
-rw-r--r--templater/templater.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/templater/templater.go b/templater/templater.go
index 29079eb9425e..89d66ff38517 100644
--- a/templater/templater.go
+++ b/templater/templater.go
@@ -143,7 +143,7 @@ func applyLimits(rs *[]context.ResourceSet, include *[]string, exclude *[]string
 // Check whether an include/exclude string slice matches a resource set
 func matchesResourceSet(s *[]string, rs *context.ResourceSet) bool {
 	for _, r := range *s {
-		if r == rs.Name || r == *rs.Parent {
+		if r == rs.Name || (rs.Parent != nil && r == *rs.Parent) {
 			return true
 		}
 	}