Skip to content

Commit 5505200

Browse files
committed
chore: remove rustfmt check in configure
rustfmt isn’t needed for production builds and cargo is sufficient
1 parent 49c2f29 commit 5505200

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ default_valgrind_setting()
134134

135135
default_rust_setting()
136136
{
137-
if cargo --version > /dev/null 2>&1 && rustfmt --version >/dev/null 2>&1; then
138-
echo 1
137+
if cargo --version > /dev/null 2>&1; then
138+
echo 1
139139
else
140-
echo 0
140+
echo 0
141141
fi
142142
}
143143

0 commit comments

Comments
 (0)