mirror of
https://github.com/kuhyx/steam-backlog-enforcer.git
synced 2026-07-04 13:23:18 +02:00
8 lines
251 B
Bash
Executable File
8 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Quick launcher for the "done" workflow:
|
|
# check completion → open HLTB → pick next game → uninstall & hide others
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
exec python -m python_pkg.steam_backlog_enforcer.main "done"
|