fix(stdlib): fixed apt package promises

The installed packages list failed to recognise packages when the
architecture name is part of the package's name
This commit is contained in:
Julien Dessaux 2024-02-29 23:55:01 +01:00
parent 24c4bde14a
commit 9d68556f0e
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -64,6 +64,9 @@ func packages_list() {
slog.Error("dpkg-query", "error", "parsing error: no version after name")
os.Exit(1)
}
if strings.Contains(name, ":") { // some packages are named with the arch like something:amd64
name = strings.Split(name, ":")[0] // in this case we want only the name
}
packages[name] = s.Text()
}
}