1
0
Fork 0

Show warning in case no kernel packages matched

master
dump_stack() 2023-05-09 16:31:34 +00:00
parent 169acca9df
commit 2f4c859dd8
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 4 additions and 0 deletions

View File

@ -269,6 +269,10 @@ func matchOracleLinuxPkg(container, mask string) (
}
}
if len(pkgs) == 0 {
log.Warn().Msg("no packages matched")
}
return
}