8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fetch the meta-state branch silently in the background
|
|
git fetch origin meta-state:meta-state --quiet 2>/dev/null || true
|
|
|
|
# Synchronize the vector databases using the delta replay engine
|
|
deno run -A .forum/src/core/replay_engine.ts --sync
|