mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-06-22 07:30:18 -05:00
Verify archives, build compose image, and preflight in one script. Forward scrape-here --help; add scrape-here-smoke to CI.
14 lines
342 B
Bash
Executable File
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" "$@"
|