#!/usr/bin/env bash set -euo pipefail ROOT=$(cd "$(dirname "$0")" && pwd) missing=0 for f in notify-kit.manifest.json notify-kit.manifest.dsse.json artifact-hashes.json; do if [ ! -f "$ROOT/$f" ]; then echo "[FAIL] missing $f" >&2 missing=1 fi done if [ "$missing" -ne 0 ]; then exit 1 fi echo "[OK] Notify kit artefacts present (hash/signature verification placeholder)."