about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-12-12 09:17:43 +0100
committerMatthias Krüger <matthias.krueger@famsik.de>2018-12-12 09:17:43 +0100
commit7fe39c9c6ec03fd0133d3a9a94572a65ad4e76d9 (patch)
treee28c7e261cc900979a86b7939b990fe69ae466eb
parentf26c39bab7ae3f8e570cb85fc4337fcd70046dfd (diff)
downloadrust-7fe39c9c6ec03fd0133d3a9a94572a65ad4e76d9.tar.gz
rust-7fe39c9c6ec03fd0133d3a9a94572a65ad4e76d9.zip
fix typo in script
-rwxr-xr-xci/base-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/base-tests.sh b/ci/base-tests.sh
index 56db616cf5b..b523fd3ba31 100755
--- a/ci/base-tests.sh
+++ b/ci/base-tests.sh
@@ -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