From a6d1cf1c07f8a87ea50d3254d1a59b04b3615b18 Mon Sep 17 00:00:00 2001 From: Tomas Fabrizio Orsi Date: Thu, 27 Feb 2025 20:39:35 -0300 Subject: [PATCH] Makefile: /config.toml -> config.toml Signed-off-by: Tomas Fabrizio Orsi --- crates/l2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/l2/Makefile b/crates/l2/Makefile index 258f879d2..0fb15d6b2 100644 --- a/crates/l2/Makefile +++ b/crates/l2/Makefile @@ -161,7 +161,7 @@ ci_test: ## 🚧 Runs the L2's integration test, used by the github's CI docker compose -f ${ethrex_L2_DOCKER_COMPOSE_PATH} down docker compose -f ${ethrex_L2_DOCKER_COMPOSE_PATH} up -d --build touch .env - BRIDGE_ADDRESS=$$(grep 'bridge_address' /config.toml | cut -d= -f2 | sed 's/[" ]//'g) ON_CHAIN_PROPOSER_ADDRESS=$$(grep 'on_chain_proposer_address' /config.toml | cut -d= -f2 | sed 's/[" ]//'g) cargo test l2 --release -- --nocapture --test-threads=1 + BRIDGE_ADDRESS=$$(grep 'bridge_address' config.toml | cut -d= -f2 | sed 's/[" ]//'g) ON_CHAIN_PROPOSER_ADDRESS=$$(grep 'on_chain_proposer_address' config.toml | cut -d= -f2 | sed 's/[" ]//'g) cargo test l2 --release -- --nocapture --test-threads=1 docker compose -f ${ethrex_L2_DOCKER_COMPOSE_PATH} down test: ## 🚧 Runs the L2's integration test, run `make init` and in a new terminal make test