rwx/build.py
Marc Beninca 1c4f52007c
Some checks failed
/ job (push) Failing after 1m8s
build & workflow
2024-10-13 21:42:16 +02:00

11 lines
257 B
Python
Executable file

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