resource: Use path.Match instead of filepath.Match
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 17 Jan 2018 19:47:35 +0000 (20:47 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 17 Jan 2018 19:48:31 +0000 (20:48 +0100)
They behave similar, but it is a path we're matching.

See #4244

resource/resource.go

index 951f1d9a7f808ecd9c48201005fd242053c7cab5..b3a92273dc8c4ac5bfa9fd2f1f7f00d572d2dfd0 100644 (file)
@@ -360,7 +360,7 @@ func (l *genericResource) Publish() error {
 // and matching by wildcard given in `src` using `filepath.Match` with lower cased values.
 // This assignment is additive, but the most specific match needs to be first.
 // The `name` and `title` metadata field support shell-matched collection it got a match in.
-// See https://golang.org/pkg/path/filepath/#Match
+// See https://golang.org/pkg/path/#Match
 func AssignMetadata(metadata []map[string]interface{}, resources ...Resource) error {
 
        counters := make(map[string]int)
@@ -390,7 +390,7 @@ func AssignMetadata(metadata []map[string]interface{}, resources ...Resource) er
 
                        srcKey := strings.ToLower(cast.ToString(src))
 
-                       match, err := filepath.Match(srcKey, resourceSrcKey)
+                       match, err := path.Match(srcKey, resourceSrcKey)
                        if err != nil {
                                return fmt.Errorf("failed to match resource with metadata: %s", err)
                        }