Skip to content

Commit 6be9aa5

Browse files
committed
fix(common): make commands failing
1 parent 8616abd commit 6be9aa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mithril-common/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
${CARGO} build --release --features full
8+
${CARGO} build --release
99

1010
test:
11-
${CARGO} test --features full
11+
${CARGO} test
1212

1313
check:
1414
${CARGO} check --release --all-features --all-targets
1515
${CARGO} clippy --release --all-features --all-targets
1616
${CARGO} fmt --check
1717

1818
doc:
19-
${CARGO} doc --no-deps --open --features full
19+
${CARGO} doc --no-deps --open
2020

2121
bench:
22-
${CARGO} bench --features full --verbose
22+
${CARGO} bench --verbose

0 commit comments

Comments
 (0)