Skip to content

Commit f5a37f9

Browse files
committed
chore: remove bundle_tls from makefiles recipes
As it ask for supplemental dependencies that are not consistent with the other recipes, plus they are not used in the CI.
1 parent 81e3feb commit f5a37f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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 --release --features bundle_tls
8+
${CARGO} build
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 --release --features bundle_tls
13+
${CARGO} build
1414
cp ../target/release/mithril-client .
1515

1616
run: build

mithril-signer/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 --release --features bundle_tls
8+
${CARGO} build --release
99
cp ../target/release/mithril-signer .
1010

1111
run: build

0 commit comments

Comments
 (0)