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>
This commit is contained in:
parent
d2e9ccefde
commit
52c2cea0ef
1 changed files with 2 additions and 2 deletions
|
|
@ -709,8 +709,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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue