neovim/scripts/clint.sh
Thiago de Arruda 8f710a4103 Fix clint.sh wrapper script and broken files
- Fixed clint.sh, it no longer ignores errors in individual files.
- Fixed two files that weren't passing the clint test
2014-04-22 21:56:06 -03:00

10 lines
119 B
Bash
Executable File

#!/bin/sh
for file in $(cat clint-files.txt); do
./clint.py $file || fail=1
done
if [ -n "$fail" ]; then
exit 1
fi