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