s/internal error/internal compiler error/

This commit is contained in:
Philipp Hansch 2018-05-16 20:08:46 +02:00
parent 3314c5fda7
commit 569c138333
No known key found for this signature in database
GPG Key ID: B6FA06A6E0E2665B
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ cd checkout
function check() {
cargo clippy --all &> clippy_output
cat clippy_output
! cat clippy_output | grep -q "internal error"
! cat clippy_output | grep -q "internal compiler error"
if [[ $? != 0 ]]; then
return 1
fi