summaryrefslogtreecommitdiff
path: root/ci/install.sh
blob: af4bb7765b13fe5dfcbdbaf947e286a661e00dde (plain)
1
2
3
4
5
6
#!/bin/bash

# Add clippy for linting with nightly builds
if [ "$CLIPPY" == "true" ]; then
    rustup component add clippy
fi