Skip to content
Merged
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
4 changes: 3 additions & 1 deletion easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2875,7 +2875,9 @@ def apply_post_install_patches(self, patches=None):

self.log.debug("Post-install patches to apply: %s", patches)
if patches:
self.patch_step(beginpath=self.installdir, patches=patches)
# self may be inherited from the Bundle easyblock and that patch_step is a no-op
# To allow postinstallpatches for Bundle, and derived, easyblocks we directly call EasyBlock.patch_step
EasyBlock.patch_step(self, beginpath=self.installdir, patches=patches)

def post_install_step(self):
"""
Expand Down