mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 19:43:11 +02:00
8 lines
246 B
Bash
Executable File
8 lines
246 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 python_pkg.steam_backlog_enforcer.main "${1:-done}"
|