Skip to content

Commit

Permalink
move prepare step before extract_step (to fix easybuilders#1376)
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Sep 14, 2019
1 parent 24fec17 commit 272a759
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2887,9 +2887,9 @@ def install_step_spec(initial):
steps_part1 = [
(FETCH_STEP, 'fetching files', [lambda x: x.fetch_step], False),
ready_step_spec(True),
prepare_step_spec,
source_step_spec(True),
patch_step_spec,
prepare_step_spec,
configure_step_spec,
build_step_spec,
test_step_spec,
Expand All @@ -2901,9 +2901,9 @@ def install_step_spec(initial):
# not all parts of all steps need to be rerun (see e.g., ready, prepare)
steps_part2 = [
ready_step_spec(False),
prepare_step_spec,
source_step_spec(False),
patch_step_spec,
prepare_step_spec,
configure_step_spec,
build_step_spec,
test_step_spec,
Expand Down

0 comments on commit 272a759

Please sign in to comment.