mirror of
https://github.com/LostArtefacts/TR2X.git
synced 2024-11-23 13:59:45 +00:00
9 lines
193 B
Python
Executable File
9 lines
193 B
Python
Executable File
#!/usr/bin/env python3
|
|
from libtrx.cli.release import run_script
|
|
from tr2x.paths import TR2X_REPO_DIR
|
|
|
|
run_script(
|
|
project_name="TR2X",
|
|
changelog_path=TR2X_REPO_DIR / "CHANGELOG.md",
|
|
)
|