mirror of
https://github.com/kharonsec/br-acc
synced 2026-04-25 17:15:02 +02:00
10 lines
339 B
Bash
Executable File
10 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
|
|
|
echo "bootstrap-all runs full historical ingestion and may take many hours with high disk/network usage."
|
|
|
|
exec python3 "${REPO_ROOT}/scripts/run_bootstrap_all.py" --repo-root "${REPO_ROOT}" "$@"
|