Commit 17d23e55 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: cleanup deploy config check

Removes the special case for the deploy config check where
the `getting-started.json` was not valid JSON and would need
to be skipped by the deploy config checking script. The getting
started guide has been updated with new logic so this special case
can be removed.
parent a32221b5
...@@ -11,11 +11,6 @@ CONTRACTS_BASE=$(dirname $SCRIPT_DIR) ...@@ -11,11 +11,6 @@ CONTRACTS_BASE=$(dirname $SCRIPT_DIR)
MONOREPO_BASE=$(dirname $(dirname $CONTRACTS_BASE)) MONOREPO_BASE=$(dirname $(dirname $CONTRACTS_BASE))
for config in $CONTRACTS_BASE/deploy-config/*.json; do for config in $CONTRACTS_BASE/deploy-config/*.json; do
if grep -q "getting-started" <<< "$config"; then
echo "Skipping getting-started.json"
continue
fi
go run $MONOREPO_BASE/op-chain-ops/cmd/check-deploy-config/main.go --path $config go run $MONOREPO_BASE/op-chain-ops/cmd/check-deploy-config/main.go --path $config
[ $? -eq 0 ] || code=$? [ $? -eq 0 ] || code=$?
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment