Auto merge of #3536 - matthiaskrgr:fix_script, r=oli-obk

fix typo in script
This commit is contained in:
bors 2018-12-12 08:27:12 +00:00
commit 921d4da103
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ for file in `find tests -not -path "tests/ui/methods.rs" -not -path "tests/ui/fo
rustfmt ${file} --check || echo "${file} needs reformatting!" ; needs_formatting=true
done
if [ "${needs_reformatting}" = true] ; then
if [ "${needs_reformatting}" = true ] ; then
echo "Tests need reformatting!"
exit 2
fi