mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-11 04:11:21 +00:00
makefile: fix build-docker-localnode target (#3122)
cd does not work because it's executed in a subprocess so it has to be either chained by && or ; See https://stackoverflow.com/q/1789594/820520 for more details. Fixes #3058
This commit is contained in:
committed by
Ethan Buchman
parent
5f4d8e031e
commit
bc00a032c1
4
Makefile
4
Makefile
@ -292,9 +292,7 @@ build-linux:
|
|||||||
GOOS=linux GOARCH=amd64 $(MAKE) build
|
GOOS=linux GOARCH=amd64 $(MAKE) build
|
||||||
|
|
||||||
build-docker-localnode:
|
build-docker-localnode:
|
||||||
cd networks/local
|
@cd networks/local && make
|
||||||
make
|
|
||||||
cd -
|
|
||||||
|
|
||||||
# Run a 4-node testnet locally
|
# Run a 4-node testnet locally
|
||||||
localnet-start: localnet-stop
|
localnet-start: localnet-stop
|
||||||
|
Reference in New Issue
Block a user