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