alacritty/ci/install.sh

7 lines
126 B
Bash
Executable File

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