about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-12-12 08:27:12 +0000
committerbors <bors@rust-lang.org>2018-12-12 08:27:12 +0000
commit921d4da103ad1248508f3cc1b4c642b0b5b1b6d2 (patch)
treee28c7e261cc900979a86b7939b990fe69ae466eb
parentf26c39bab7ae3f8e570cb85fc4337fcd70046dfd (diff)
parent7fe39c9c6ec03fd0133d3a9a94572a65ad4e76d9 (diff)
downloadrust-921d4da103ad1248508f3cc1b4c642b0b5b1b6d2.tar.gz
rust-921d4da103ad1248508f3cc1b4c642b0b5b1b6d2.zip
Auto merge of #3536 - matthiaskrgr:fix_script, r=oli-obk
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