Skip to content

Commit

Permalink
Update build.py
Browse files Browse the repository at this point in the history
Add forgotten newlines.

Signed-off-by: Indan Zupancic <indan@nul.nu>
  • Loading branch information
Indanz authored and lsf37 committed Mar 21, 2024
1 parent 7d35856 commit cdfeb1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sel4bench/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,12 @@ def gen_web(runs: List[Run], yml, file_name: str):
]

with open(file_name, 'w') as f:
f.write('---')
f.write('# Copyright 2021 seL4 Project a Series of LF Projects, LLC.')
f.write('# SPDX-License-Identifier: CC-BY-SA-4.0')
f.write('title: seL4 benchmarks')
f.write('redirect_from: /About/Performance/home.pml')
f.write('---')
f.write('---\n')
f.write('# Copyright 2021 seL4 Project a Series of LF Projects, LLC.\n')
f.write('# SPDX-License-Identifier: CC-BY-SA-4.0\n')
f.write('title: seL4 benchmarks\n')
f.write('redirect_from: /About/Performance/home.pml\n')
f.write('---\n')

f.write('<h1>Performance</h1>\n')
f.write('<p>This page displays the latest benchmark numbers for seL4 from the publicly\n')
Expand Down

0 comments on commit cdfeb1f

Please sign in to comment.