7 lines
263 B
Bash
Executable File
7 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
# Placeholder script to avoid CI failure when the real check script is absent.
|
|
# This script intentionally performs no checks and exits successfully.
|
|
echo "Placeholder: scripts/check-version-against-prod.sh — no-op"
|
|
exit 0
|