mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-10 16:04:04 +00:00
10 lines
395 B
Bash
10 lines
395 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Real authenticated ranked-profile response verification. The shared gate
|
|
# keeps the existing fresh-player 404 path as its default and enables this
|
|
# populated durable-rating fixture only for this explicit variant.
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$root_dir"
|
|
RANKED_SMOKE=1 bash scripts/verify_control_plane_integration.sh
|