spcd/build.py
2024-10-08 20:02:33 +02:00

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")