rwx/build.py

12 lines
257 B
Python
Raw Normal View History

2024-10-13 19:42:16 +00:00
#! /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")