Skip to content

Commit 2543869

Browse files
committed
fix: restore release option for build in Makefile for aggregator and client_cli
1 parent 7cc55d9 commit 2543869

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mithril-aggregator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
${CARGO} build
8+
${CARGO} build --release
99
cp ../target/release/mithril-aggregator .
1010

1111
run: build

mithril-client-cli/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
${CARGO} build
13+
${CARGO} build --release
1414
cp ../target/release/mithril-client .
1515

1616
run: build

0 commit comments

Comments
 (0)