Manifests diff on manifests
(oldIndex, newIndex map[string]*manifest.MappingResult, options *Options, to io.Writer)
| 46 | |
| 47 | // Manifests diff on manifests |
| 48 | func Manifests(oldIndex, newIndex map[string]*manifest.MappingResult, options *Options, to io.Writer) bool { |
| 49 | return ManifestsOwnership(oldIndex, newIndex, nil, options, to) |
| 50 | } |
| 51 | |
| 52 | func ManifestsOwnership(oldIndex, newIndex map[string]*manifest.MappingResult, newOwnedReleases map[string]OwnershipDiff, options *Options, to io.Writer) bool { |
| 53 | seenAnyChanges, report, err := generateReport(oldIndex, newIndex, newOwnedReleases, options) |