Marc Beninca
bd31e060ab
Some checks failed
/ arch (push) Failing after 1m16s
/ alpine (push) Failing after 42s
/ debian (push) Has been cancelled
/ opensuse (push) Has been cancelled
/ ubuntu (push) Has been cancelled
/ alma (push) Has been cancelled
/ rocky (push) Has been cancelled
/ fedora (push) Has been cancelled
11 lines
243 B
Python
Executable file
11 lines
243 B
Python
Executable file
#! /usr/bin/env python3
|
|
"""Dummy build."""
|
|
|
|
from pathlib import Path
|
|
|
|
from rwx.fs import make_directory
|
|
|
|
if __name__ == "__main__":
|
|
out = Path(__file__).parent / "out"
|
|
make_directory(out)
|
|
write(out / "index.html", "spcd.rwx.work")
|