We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79def4 commit bd5bccaCopy full SHA for bd5bcca
pkg/referenceutil/referenceutil.go
@@ -65,7 +65,10 @@ func (ir *ImageReference) FamiliarName() string {
65
}
66
67
func (ir *ImageReference) FamiliarMatch(pattern string) (bool, error) {
68
- return reference.FamiliarMatch(pattern, ir.nn)
+ if ir.nn != nil {
69
+ return reference.FamiliarMatch(pattern, ir.nn)
70
+ }
71
+ return false, nil
72
73
74
func (ir *ImageReference) String() string {
0 commit comments