mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
e4e0218ede
This should provide more clear feedback whether rustfmt job is failed or not.
6 lines
114 B
Bash
Executable file
6 lines
114 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Add clippy for lint validation
|
|
if [ "$CLIPPY" == "true" ]; then
|
|
rustup component add clippy
|
|
fi
|