diff options
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/install.sh b/ci/install.sh new file mode 100755 index 00000000..9e8c2e6d --- /dev/null +++ b/ci/install.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# Add clippy for linting with nightly builds +if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then + rustup component add clippy-preview +fi |