Skip to content

Commit

Permalink
Update add_results_summary.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh authored Jan 4, 2025
1 parent ba69da1 commit cc46bb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions add_results_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def get_software_details_table(system_json):
tmp_path = os.path.dirname(details)
tmp_path = os.path.dirname(tmp_path)
submitter = os.path.basename(tmp_path)
out_path = os.path.join(division, submitter, "results", sut_name, "summary", "README.md")
out_path = os.path.join(division, submitter, "results", sut_name, "README.md")
os.makedirs(os.path.dirname(out_path), exist_ok=True)

html_table = f"""
Expand All @@ -296,7 +296,7 @@ def get_software_details_table(system_json):
"""
with open(out_path, "w") as f:
f.write(html_table)
html_out_path = os.path.join(division, submitter, "results", sut_name, "summary", "summary.html")
html_out_path = os.path.join(division, submitter, "results", sut_name, "summary.html")
html_header = get_header()
html = f"""
<html>
Expand Down

0 comments on commit cc46bb9

Please sign in to comment.