neovim/.ci/clint.sh
Thiago de Arruda 6483a198e4 Travis CI: Refactor travis script
To simplify modification/inclusion of continuous integration targets, this
removes travis.sh which contains a big if statement in favor of multiple scripts
under the new '.ci' directory.
2014-08-08 06:06:10 -04: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