We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8c0cad commit 37eef32Copy full SHA for 37eef32
easybuild/framework/easyblock.py
@@ -2875,7 +2875,9 @@ def apply_post_install_patches(self, patches=None):
2875
2876
self.log.debug("Post-install patches to apply: %s", patches)
2877
if patches:
2878
- self.patch_step(beginpath=self.installdir, patches=patches)
+ # self may be inherited from the Bundle easyblock and that patch_step is a no-op
2879
+ # To allow postinstallpatches for Bundle, and derived, easyblocks we directly call EasyBlock.patch_step
2880
+ EasyBlock.patch_step(self, beginpath=self.installdir, patches=patches)
2881
2882
def post_install_step(self):
2883
"""
0 commit comments