Skip to content

Commit

Permalink
Fix CMS script with new locations
Browse files Browse the repository at this point in the history
  • Loading branch information
danvangeest committed Jul 22, 2024
1 parent 8fe06f7 commit ba761fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rebuild_results_cms_v1.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#!/bin/bash

# build a list of all compat matrix files in provider dirs
dirs=$(ls ../providers)
dirs=$(ls providers)
for dir in $dirs; do
dir=../providers/$dir
dir=providers/$dir
if [ ! -d $dir ]; then continue; fi
files+=$(find $dir/compatMatrices/artifacts_cms_v1 -name "*.csv" )
files+=" "
done

# build the compat matrix
python3 pqc_report_writer_common.py ../docs/oid_mapping.md pqc_hackathon_results_cms_v1.md CMS $files
python3 src/pqc_report_writer_common.py docs/oid_mapping.md pqc_hackathon_results_cms_v1.md CMS $files

# convert to html
pandoc -f markdown pqc_hackathon_results_cms_v1.md > pqc_hackathon_results_cms_v1.html
mv pqc_hackathon_results_cms_v1.md pqc_hackathon_results_cms_v1.html oids.json ../docs
mv pqc_hackathon_results_cms_v1.md pqc_hackathon_results_cms_v1.html docs

0 comments on commit ba761fd

Please sign in to comment.