spcd/build.py

11 lines
198 B
Python
Raw Normal View History

2024-10-08 18:02:33 +00:00
#! /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")