Compare commits
2 commits
8e58d45e10
...
bd31e060ab
Author | SHA1 | Date | |
---|---|---|---|
bd31e060ab | |||
283e888eea |
1 changed files with 11 additions and 0 deletions
11
build.py
Executable file
11
build.py
Executable file
|
@ -0,0 +1,11 @@
|
|||
#! /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")
|
Loading…
Reference in a new issue