1
0
Fork 0
mirror of synced 2024-05-25 19:41:14 -04:00
ultimate-vim/sources_non_forked/vim-snippets/tests.sh
2015-12-08 10:20:04 -03:00

16 lines
249 B
Bash

#!/usr/bin/env bash
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
if [[ $? -ne 1 ]]; then
echo These snippet lines are indented with spaces:
echo
echo "$SPACED"
echo
echo Tests failed!
exit 1
fi
echo Tests passed!
exit 0