aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
blob: 56bb887c0511b050b2148458b720b9478c22a951 (plain)
1
2
3
4
5
6
7
8
9
set -ex

if [ "$RUSTFMT" = "yes" ]; then
    rustup component add rustfmt-preview
fi

if [ "$CLIPPY" = "yes" ]; then
    rustup component add clippy-preview
fi