Skip to content

Commit

Permalink
staterecovery: fix make target
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnovais committed Jan 24, 2025
1 parent 0354ffc commit 7410363
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ start-whole-environment:

start-whole-environment-traces-v2: COMPOSE_PROFILES:=l1,l2
start-whole-environment-traces-v2:
@if [ -z "$(L1_GENESIS_TIME)" ]; then \
L1_GENESIS_TIME=$$(get_future_time); \
fi; \
L1_GENESIS_TIME=$(L1_GENESIS_TIME) COMPOSE_PROFILES=$(COMPOSE_PROFILES) docker compose -f docker/compose.yml -f docker/compose-local-dev-traces-v2.overrides.yml up -d
@if [ -z "$(L1_GENESIS_TIME)" ]; then \
L1_GENESIS_TIME=$(get_future_time); \
fi; \
L1_GENESIS_TIME=$$L1_GENESIS_TIME COMPOSE_PROFILES=$(COMPOSE_PROFILES) docker compose -f docker/compose.yml -f docker/compose-local-dev-traces-v2.overrides.yml up -d

pull-all-images:
COMPOSE_PROFILES:=l1,l2 docker compose -f docker/compose.yml -f docker/compose-local-dev-traces-v2.overrides.yml pull
Expand Down

0 comments on commit 7410363

Please sign in to comment.