build
This commit is contained in:
parent
8e58d45e10
commit
283e888eea
1 changed files with 10 additions and 0 deletions
10
build.py
Executable file
10
build.py
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#! /usr/bin/env python3
|
||||||
|
"""Dummy build."""
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
from rwx.fs import make_directory
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
root = Path(__file__).parent
|
||||||
|
make_directory(root / "out")
|
Loading…
Reference in a new issue