mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00
4 lines
122 B
Bash
Executable File
4 lines
122 B
Bash
Executable File
echo "checking for lines over 100 characters..."
|
|
find src tests -name '*.rs' | xargs grep '.\{101,\}' && exit 1
|
|
echo "ok"
|