#!/usr/bin/env bash# This script is used to check for valid deploy configs.# It should check all configs and return a non-zero exit code if any of them are invalid.# getting-started.json isn't valid JSON so its skipped.code=$?SCRIPT_DIR=$(cd--"$(dirname--"${BASH_SOURCE[0]}")" &> /dev/null &&pwd)CONTRACTS_BASE=$(dirname$SCRIPT_DIR)MONOREPO_BASE=$(dirname$(dirname$CONTRACTS_BASE))for config in$CONTRACTS_BASE/deploy-config/*.json;do if grep-q"getting-started"<<<"$config";thenecho"Skipping getting-started.json"continue figo run $MONOREPO_BASE/op-chain-ops/cmd/check-deploy-config/main.go --path$config[$?-eq 0 ]||code=$?doneexit$code