refactor: update scripts for kebab-case service binary names

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-04 22:08:31 +01:00
parent e047c1eea3
commit d3ed2e2540
5 changed files with 30 additions and 30 deletions

View File

@@ -106,11 +106,11 @@ echo
# Build validation tool if not already built
echo "Building validation tool..."
cargo build --release -p backtesting_service --bin validate_dbn_data 2>&1 | grep -v "Compiling\|Finished" || true
cargo build --release -p backtesting-service --bin validate_dbn_data 2>&1 | grep -v "Compiling\|Finished" || true
echo
# Run validation
VALIDATION_CMD="cargo run --release -p backtesting_service --bin validate_dbn_data --"
VALIDATION_CMD="cargo run --release -p backtesting-service --bin validate_dbn_data --"
if [ -n "$SYMBOL" ]; then
VALIDATION_CMD="$VALIDATION_CMD --symbol $SYMBOL"