Skip to content

Commit

Permalink
Test: Remove superfluous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 4, 2015
1 parent 29c4372 commit 2fdfe80
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2fdfe80

Please sign in to comment.