Skip to content

Commit

Permalink
fix makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Stas Stepanov committed Oct 11, 2024
1 parent bb52d22 commit bfaf5e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,11 @@ pr:
make update-book-cli && \
make test

FLUENT_NODE_BUILD_FLAG=--release

.PHONY: fluent_build
fluent_build:
cargo build -p reth
cargo build -p reth --bin reth $(FLUENT_NODE_BUILD_FLAG)

FLUENT_DATADIR:=datadir
.PHONY: fluent_clear_datadir
Expand All @@ -486,7 +488,7 @@ fluent_clear_datadir:

.PHONY: fluent_run
fluent_run:
cargo run -p reth --bin reth -- --color=never --chain=dev node --datadir=./$(FLUENT_DATADIR) --dev --full --http --port=30305
cargo run -p reth --bin reth $(FLUENT_NODE_BUILD_FLAG) -- --color=never --chain=dev node --datadir=./$(FLUENT_DATADIR) --dev --full --http --port=30305

.PHONY: fluent_run_clean
fluent_run_clean:
Expand Down

0 comments on commit bfaf5e3

Please sign in to comment.