mirror of
https://github.com/alacritty/alacritty.git
synced 2025-04-21 18:02:37 -04:00
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
|