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 0c0a7b4 commit 3a3f1c6Copy full SHA for 3a3f1c6
easybuild/framework/easyblock.py
@@ -5033,7 +5033,7 @@ def build_and_install_one(ecdict, init_env):
5033
_log.warning("Failed to create build environment dump for easyconfig %s: %s", reprod_spec, err)
5034
5035
# also add any component/extension easyblocks used during the build for reproducibility
5036
- if app.comp_instances:
+ if hasattr(app, 'comp_instances'):
5037
copy_easyblocks_for_reprod([comp for cfg, comp in app.comp_instances], reprod_dir)
5038
if app.ext_instances:
5039
copy_easyblocks_for_reprod(app.ext_instances, reprod_dir)
0 commit comments