11 lines
198 B
Python
11 lines
198 B
Python
|
#! /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")
|