diff --git a/swupd/delta.go b/swupd/delta.go index 0b78a47..093b236 100644 --- a/swupd/delta.go +++ b/swupd/delta.go @@ -21,6 +21,7 @@ import ( "path/filepath" "sync" "syscall" + "strings" "github.com/clearlinux/mixer-tools/helpers" "github.com/clearlinux/mixer-tools/log" @@ -341,6 +342,13 @@ func findDeltas(c *config, oldManifest, newManifest *Manifest) ([]Delta, error) continue } + if strings.Contains(to.Name, "/usr/bin/") { + continue + } + if strings.Contains(to.Name, "/usr/lib64/") { + continue + } + seen[path] = true deltas = append(deltas, Delta{ Path: path,