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 7a819a3 commit 1ccf30aCopy full SHA for 1ccf30a
easybuild/framework/easyblock.py
@@ -5144,7 +5144,10 @@ def ensure_writable_log_dir(log_dir):
5144
_log.debug("Copied easyconfig file %s to %s", spec, newspec)
5145
5146
# copy patches
5147
- for patch in app.patches:
+ patches = app.patches
5148
+ for ext in app.exts:
5149
+ patches += ext.get('patches', [])
5150
+ for patch in patches:
5151
target = os.path.join(new_log_dir, os.path.basename(patch['path']))
5152
copy_file(patch['path'], target)
5153
_log.debug("Copied patch %s to %s", patch['path'], target)
0 commit comments