Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a06ecb-456a-71c2-b41e-0755d336e883
8 lines
402 B
Bash
Executable file
8 lines
402 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Platform-owned, additive multi-cluster protection refresh after image rollouts.
|
|
set -euo pipefail
|
|
PLATFORM_INVENTORY_ROOT="${PLATFORM_INVENTORY_ROOT:-${HOME}/.local/lib/railiance-platform-inventory/current}"
|
|
if [[ ! -d "$PLATFORM_INVENTORY_ROOT" ]]; then
|
|
PLATFORM_INVENTORY_ROOT="${HOME}/railiance-platform"
|
|
fi
|
|
exec bash "$PLATFORM_INVENTORY_ROOT/tools/cmd/refresh-live-images"
|