index.html
Some checks failed
/ arch (push) Failing after 1m16s
/ alpine (push) Failing after 42s
/ debian (push) Has been cancelled
/ opensuse (push) Has been cancelled
/ ubuntu (push) Has been cancelled
/ alma (push) Has been cancelled
/ rocky (push) Has been cancelled
/ fedora (push) Has been cancelled

This commit is contained in:
Marc Beninca 2024-10-08 20:05:21 +02:00
parent 283e888eea
commit bd31e060ab
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -6,5 +6,6 @@ from pathlib import Path
from rwx.fs import make_directory
if __name__ == "__main__":
root = Path(__file__).parent
make_directory(root / "out")
out = Path(__file__).parent / "out"
make_directory(out)
write(out / "index.html", "spcd.rwx.work")