1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-11 13:51:01 -05:00
alacritty/ci/install.sh

7 lines
126 B
Bash
Raw Normal View History

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