2025-12-16 17:14:24 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
2025-12-01 12:48:39 +01:00
|
|
|
|
2025-12-16 17:14:24 +01:00
|
|
|
# Thin wrapper; the actual implementation lives in scripts/lib/setup-nomos-circuits.sh
|
|
|
|
|
if [ -z "${BASH_VERSION:-}" ]; then
|
|
|
|
|
exec bash "$0" "$@"
|
|
|
|
|
fi
|
2025-12-01 12:48:39 +01:00
|
|
|
|
2025-12-16 17:14:24 +01:00
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
2025-12-01 12:48:39 +01:00
|
|
|
|
2025-12-16 17:14:24 +01:00
|
|
|
# shellcheck disable=SC1091
|
|
|
|
|
. "${ROOT_DIR}/scripts/lib/setup-nomos-circuits.sh"
|
2025-12-01 12:48:39 +01:00
|
|
|
|
2025-12-16 17:14:24 +01:00
|
|
|
setup_nomos_circuits::main "$@"
|
2025-12-01 12:48:39 +01:00
|
|
|
|