Skip to content

Commit

Permalink
fix dependency order to copy logs (#254)
Browse files Browse the repository at this point in the history
Co-authored-by: Anita Caron <anitacaron@users.noreply.github.com>
  • Loading branch information
Anita Caron and anitacaron authored Aug 29, 2023
1 parent c348d9c commit b125025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ all: last_official_release official_release
../owl/%_annotations.owl ../owl/%_sec.owl ../templates/class_template_%.csv ../templates/temp_ub_%_ASCTB_subset.csv ../templates/temp_cl_%_ASCTB_subset.csv ../templates/%_no-valid.csv ../logs/%/logs_dict.json: ../resources/ASCT-b_tables/%.json
python template_runner.py $* $< ../templates/class_template_$*.csv $(OLD_VERSION)

validation_reports_release_%: ../logs/%/README.md
validation_reports_release_%: ../logs/%/logs_dict.json
cp -a ../logs/$*/. ../docs/$*

../logs/%/README.md: ../logs/%/logs_dict.json
../logs/%/README.md: ../logs/%/logs_dict.json validation_reports_release_%
if [ $(OLD_VERSION) = False ]; then python readme_reports_generation.py --table $* --data $< --output $@ --mode "readme" && \
rm $<; fi
.PRECIOUS: ../logs/%/README.md
Expand Down

0 comments on commit b125025

Please sign in to comment.