mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-06-09 15:52:37 -06:00
Operators with only the GUI download are directed to the source repo for Docker/cron append-only exports via scripts/scrape-here.sh.
7 lines
236 B
Bash
Executable file
7 lines
236 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)
|
|
exec "$REPO_ROOT/scripts/run-discord-scrape-host.sh" "$@"
|