1
0
Fork 0

fix: match the "all" arch of the debian kernel packages

master
dump_stack() 2023-05-14 11:40:36 +00:00
parent fa23cdfc54
commit 0fd9d80940
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ func GetDebianKernel(version string) (dk DebianKernel, err error) {
"all-amd64",
}
packages, err := snapshot.Packages("linux", version, "amd64",
regex, filter)
packages, err := snapshot.Packages("linux", version, regex,
[]string{"amd64", "all"}, filter)
if err != nil {
return
}