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-13 18:42:44 +00:00
|
|
|
out = Path(__file__).parent / "out" / "web"
|
2024-10-08 18:05:21 +00:00
|
|
|
make_directory(out)
|
|
|
|
write(out / "index.html", "spcd.rwx.work")
|