mirror of
https://github.com/kuhyx/steam-backlog-enforcer.git
synced 2026-07-04 11:43:12 +02:00
Extracted from testsAndMisc monorepo. Changes: - Rewrote imports from python_pkg.steam_backlog_enforcer.* → steam_backlog_enforcer.* - Moved run.sh, install.sh, README.md, service file to repo root - Added standalone pyproject.toml, requirements.txt, .pre-commit-config.yaml, .gitignore - Added GitHub Actions CI workflows (tests + pre-commit) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
229 B
Bash
Executable File
8 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Launcher for the Steam Backlog Enforcer.
|
|
# Usage: ./run.sh [command] (defaults to "done" if no command given)
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
exec python -m steam_backlog_enforcer.main "${1:-done}"
|