diff --git a/logpage.py b/logpage.py
index e83e505c447..6a016c6a103 100644
--- a/logpage.py
+++ b/logpage.py
@@ -409,7 +409,10 @@ def create_test_results(readfile):
Build #{curr_ver}
{build_date}
@@ -453,6 +456,11 @@ def summary_to_html(readfile,writefile):
sidebar_template = create_sidebar()
with open(writefile,"w") as fp:
curr_build_file = create_test_results(readfile)
+ try:
+ os.remove(f"{gh_pages}/docs/build.html")
+ except FileNotFoundError:
+ pass
+ os.symlink(curr_build_file, f"{gh_pages}/docs/build.html")
# The formatted string holds the html template and loads in the values for content and status
# This templated gets injected to index.html, holding both the sidebar and test results
@@ -518,7 +526,7 @@ def summary_to_html(readfile,writefile):
-
+