1
0

Show warning in case no kernel packages matched

此提交包含在:
2023-05-09 16:31:34 +00:00
父節點 169acca9df
當前提交 2f4c859dd8

查看文件

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