Compare commits

..

2 commits

Author SHA1 Message Date
bd31e060ab
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
2024-10-08 20:05:21 +02:00
283e888eea
build 2024-10-08 20:02:33 +02:00

11
build.py Executable file
View file

@ -0,0 +1,11 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory
if __name__ == "__main__":
out = Path(__file__).parent / "out"
make_directory(out)
write(out / "index.html", "spcd.rwx.work")