spcd/build.py

12 lines
250 B
Python
Raw Normal View History

2024-10-08 18:02:33 +00:00
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
2024-10-08 18:09:44 +00:00
from rwx.fs import make_directory, write
2024-10-08 18:02:33 +00:00
if __name__ == "__main__":
2024-10-08 18:05:21 +00:00
out = Path(__file__).parent / "out"
make_directory(out)
write(out / "index.html", "spcd.rwx.work")