mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
8f710a4103
- Fixed clint.sh, it no longer ignores errors in individual files. - Fixed two files that weren't passing the clint test
10 lines
119 B
Bash
Executable File
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
|