Skip to content

Commit

Permalink
Swap == for = for sh comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus993 committed Oct 3, 2024
1 parent c7805cc commit 5a375e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ docker_build:

docker_up:
docker compose -f docker-compose.yaml --profile base up -d --remove-orphans --force-recreate
@until [ "$$(docker inspect $$(docker ps | grep anvil | awk '{print $$1}') | jq -r '.[0].State.Health.Status')" == "healthy" ]; do sleep .5; done; sleep 2
@until [ "$$(docker inspect $$(docker ps | grep anvil | awk '{print $$1}') | jq -r '.[0].State.Health.Status')" = "healthy" ]; do sleep .5; done; sleep 2
docker compose -f docker-compose.yaml --profile aggregator up -d --remove-orphans --force-recreate
docker compose -f docker-compose.yaml run --rm fund-operator
docker compose -f docker-compose.yaml run --rm register-operator-eigenlayer
Expand Down

0 comments on commit 5a375e1

Please sign in to comment.