From 7fe39c9c6ec03fd0133d3a9a94572a65ad4e76d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Wed, 12 Dec 2018 09:17:43 +0100 Subject: [PATCH] fix typo in script --- ci/base-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/base-tests.sh b/ci/base-tests.sh index 56db616cf5b8..b523fd3ba311 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