From 2fdfe801b8331d44a8048f534c296f594f0d83cb Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Tue, 4 Aug 2015 13:22:58 +0100 Subject: [PATCH] Test: Remove superfluous semicolons --- tests.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests.sh b/tests.sh index 5b93b6b..07f0ff3 100755 --- a/tests.sh +++ b/tests.sh @@ -1,15 +1,15 @@ #!/usr/bin/env bash -SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets); +SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets) if [[ $? -ne 1 ]]; then - echo These snippet lines are indented with spaces:; - echo; - echo "$SPACED"; - echo; + echo These snippet lines are indented with spaces: + echo + echo "$SPACED" + echo echo Tests failed! - exit 1; + exit 1 fi echo Tests passed! -exit 0; +exit 0