DiscordChatExporter/scripts/scrape-here.sh
Boden 2b39a721a9 feat(scrape): add bootstrap-recurring-scrape one-shot operator flow
Verify archives, build compose image, and preflight in one script.
Forward scrape-here --help; add scrape-here-smoke to CI.
2026-05-29 13:59:04 -05:00

14 lines
342 B
Bash
Executable file

#!/usr/bin/env bash
# Run recurring append-only scrape tooling from the source repository root.
set -Eeuo pipefail
REPO_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)
case "${1:-}" in
--help|-h|help)
exec "$REPO_ROOT/scripts/run-discord-scrape.sh" help
;;
esac
exec "$REPO_ROOT/scripts/run-discord-scrape-host.sh" "$@"