Fix buildinstall reuse with pungi_buildinstall plugin

The keys may not exist anymore. If there's nothing to delete, it's fine.

JIRA: RHELCMP-13464
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
(cherry picked from commit 52c2cea0ef)
This commit is contained in:
Lubomír Sedlář 2024-02-13 10:35:47 +01:00 committed by Stepan Oksanichenko
parent 185a53d56b
commit 533ea641d8
Signed by: soksanichenko
GPG Key ID: AB9983172AB1E45B

View File

@ -716,8 +716,8 @@ class BuildinstallThread(WorkerThread):
# input on RPM level.
cmd_copy = copy(cmd)
for key in ["outputdir", "sources"]:
del cmd_copy[key]
del old_metadata["cmd"][key]
cmd_copy.pop(key, None)
old_metadata["cmd"].pop(key, None)
# Do not reuse if command line arguments are not the same.
if old_metadata["cmd"] != cmd_copy: