Skip to content

Commit b31c59e

Browse files
fix: update e2e-tests Makefile to use correct make command to build rindexer
1 parent aeeb9d3 commit b31c59e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

e2e-tests/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ install-deps: ## Install required dependencies (Foundry, Anvil)
3434
build: ## Build the E2E test binary
3535
@cargo build --bin e2e-tests
3636

37-
build-rindexer: ## Build the Rindexer binary (assumes it's in ../rindexer)
38-
@echo "Building Rindexer binary..."
39-
@cd ../rindexer && cargo build --release --bin rindexer_cli
40-
@echo "Rindexer binary built at ../rindexer/target/release/rindexer_cli"
37+
build-rindexer: ## Build the Rindexer binary using the CLI Makefile
38+
@echo "Building Rindexer binary using CLI Makefile..."
39+
@cd ../cli && make prod_build
40+
@echo "Rindexer binary built at ../target/release/rindexer_cli"
4141

4242
clean: stop-anvil ## Clean up all running processes and files
4343
@rm -f *.pid *.log

0 commit comments

Comments
 (0)