Skip to content

Commit

Permalink
Merge pull request #14 from openshift-kni/fix_log_msg
Browse files Browse the repository at this point in the history
manifests: fix log message
  • Loading branch information
Tal-or authored Aug 14, 2023
2 parents 20042f0 + 18ef173 commit f1a527d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/manifests/manifests.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func Get(sharedCPUs string, opts ...func(mf *Manifests)) (*Manifests, error) {
return nil, fmt.Errorf("key %q does not exist", f.Name())
}
if err := yaml.Unmarshal(data, fileToObject[f.Name()]); err != nil {
return nil, fmt.Errorf("failed to unmarshal file %q: %w", "bla", err)
return nil, fmt.Errorf("failed to unmarshal file %q: %w", f.Name(), err)
}
}

Expand Down

0 comments on commit f1a527d

Please sign in to comment.