15 lines
485 B
Bash
15 lines
485 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# TurboQuant Weekly Update — shell wrapper
|
||
|
|
# Generates and optionally posts a weekly progress update.
|
||
|
|
#
|
||
|
|
# Usage:
|
||
|
|
# ./scripts/weekly_update.sh # Print to stdout
|
||
|
|
# ./scripts/weekly_update.sh --post # Post as Gitea comment on #76
|
||
|
|
# ./scripts/weekly_update.sh --since 2026-04-01 # Custom date range
|
||
|
|
# ./scripts/weekly_update.sh --json # Raw JSON data
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
python3 scripts/weekly_update.py "$@"
|