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: 2 additions & 2 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -5126,8 +5126,6 @@ def ensure_writable_log_dir(log_dir):
except EasyBuildError as err:
_log.warning("Unable to commit easyconfig to repository: %s", err)

run_hook(EASYBLOCK, hooks, post_step_hook=True, args=[app])

# cleanup logs
app.close_log()

Expand Down Expand Up @@ -5201,6 +5199,8 @@ def ensure_writable_log_dir(log_dir):
if not success:
copy_build_dirs_logs_failed_install(application_log, silent, app, ecdict['ec'])

run_hook(EASYBLOCK, hooks, post_step_hook=True, args=[app])

del app

return (success, application_log, error_msg, exit_code)
Expand Down