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

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