2015-05-30 19:54:33 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2015-08-04 13:22:58 +01:00
|
|
|
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
|
2015-05-30 19:54:33 +01:00
|
|
|
|
2015-06-08 15:16:01 +01:00
|
|
|
if [[ $? -ne 1 ]]; then
|
2015-08-04 13:22:58 +01:00
|
|
|
echo These snippet lines are indented with spaces:
|
|
|
|
echo
|
|
|
|
echo "$SPACED"
|
|
|
|
echo
|
2015-05-30 19:54:33 +01:00
|
|
|
echo Tests failed!
|
2015-08-04 13:22:58 +01:00
|
|
|
exit 1
|
2015-05-30 19:54:33 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo Tests passed!
|
2015-08-04 13:22:58 +01:00
|
|
|
exit 0
|