2015-07-13 11:22:46 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2015-12-08 10:20:04 -03:00
|
|
|
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
|
2015-07-13 11:22:46 +01:00
|
|
|
|
|
|
|
if [[ $? -ne 1 ]]; then
|
2015-12-08 10:20:04 -03:00
|
|
|
echo These snippet lines are indented with spaces:
|
|
|
|
echo
|
|
|
|
echo "$SPACED"
|
|
|
|
echo
|
2015-07-13 11:22:46 +01:00
|
|
|
echo Tests failed!
|
2015-12-08 10:20:04 -03:00
|
|
|
exit 1
|
2015-07-13 11:22:46 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo Tests passed!
|
2015-12-08 10:20:04 -03:00
|
|
|
exit 0
|