Skip to content

Commit ae8883d

Browse files
author
YukiTsuchida
committed
Refactor build target in Makefile to remove parallel execution for clarity
1 parent 259d3ed commit ae8883d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

demo/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# `-j` option (short for –jobs) specifies the number of jobs that are run at the same time
44
.PHONY: build
55
build:
6-
make -C ../relayer build && mkdir -p ./bin && cp ../relayer/build/uly ./bin/ & \
7-
make -C chains/fabric bin & \
8-
cd chains/tendermint && go mod vendor && make docker-images & \
9-
make -C ../cmds/alpha build & \
6+
make -C ../relayer build && mkdir -p ./bin && cp ../relayer/build/uly ./bin/
7+
make -C chains/fabric bin
8+
cd chains/tendermint && go mod vendor && make docker-images
9+
make -C ../cmds/alpha build
1010
make -C ../cmds/beta build
1111

1212
.PHONY: network

0 commit comments

Comments
 (0)