mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
7 lines
150 B
Bash
7 lines
150 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Add clippy for linting with nightly builds
|
||
|
if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
|
||
|
rustup component add clippy-preview
|
||
|
fi
|