blob: ccbe37283670865c80317e4e3e3145c0fec03a25 [file] [log] [blame]
#!/bin/bash
# Add clippy for lint validation
if [ "$CLIPPY" == "true" ]; then
rustup component add clippy
fi
# Add rustfmt for format validation
if [ "$RUSTFMT" == "true" ]; then
rustup component add rustfmt
fi