Marc Beninca
e454f7fe9f
Some checks failed
/ arch (push) Successful in 1m21s
/ alpine (push) Successful in 45s
/ fedora (push) Successful in 8m51s
/ opensuse (push) Successful in 2m23s
/ alma (push) Successful in 2m30s
/ rocky (push) Successful in 45m29s
/ ubuntu (push) Successful in 1m15s
/ debian (push) Failing after 58s
11 lines
250 B
Python
Executable file
11 lines
250 B
Python
Executable file
#! /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"
|
|
make_directory(out)
|
|
write(out / "index.html", "spcd.rwx.work")
|