Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions easybuild/easyblocks/generic/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ def check_checksums(self):
"""
checksum_issues = super().check_checksums()

for comp, _ in self.comp_instances:
checksum_issues.extend(self.check_checksums_for(comp, sub="of component %s" % comp['name']))
for comp_cfg, _ in self.comp_instances:
checksum_issues.extend(self.check_checksums_for(comp_cfg, sub="of component %s" % comp_cfg['name']))

return checksum_issues

Expand All @@ -279,7 +279,7 @@ def prepare_step(self, *args, **kwargs):
Pre-configure step.
At this point, dependencies are known. So transfer them to all components.
"""
super().prepare_step(self, *args, **kwargs)
super().prepare_step(*args, **kwargs)
for _, comp in self.comp_instances:
comp.toolchain.dependencies = self.toolchain.dependencies

Expand Down