mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
6483a198e4
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.
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
|