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.
2 parents e6f80db + 37eef32 commit f453819Copy full SHA for f453819
easybuild/framework/easyblock.py
@@ -2876,7 +2876,9 @@ def apply_post_install_patches(self, patches=None):
2876
2877
self.log.debug("Post-install patches to apply: %s", patches)
2878
if patches:
2879
- self.patch_step(beginpath=self.installdir, patches=patches)
+ # self may be inherited from the Bundle easyblock and that patch_step is a no-op
2880
+ # To allow postinstallpatches for Bundle, and derived, easyblocks we directly call EasyBlock.patch_step
2881
+ EasyBlock.patch_step(self, beginpath=self.installdir, patches=patches)
2882
2883
def post_install_step(self):
2884
"""
0 commit comments