mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
11 lines
221 B
Bash
Executable file
11 lines
221 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Add clippy for lint validation
|
|
if [ "$CLIPPY" == "true" ]; then
|
|
rustup component add clippy
|
|
fi
|
|
|
|
# Add rustfmt for format validation
|
|
if [ "$RUSTFMT" == "true" ]; then
|
|
rustup component add rustfmt
|
|
fi
|