mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-06-10 00:02:37 -06: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" "$@"
|