diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-08-07 09:07:26 -0300 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-08-08 06:06:10 -0400 |
commit | 6483a198e4bee1e80683ba12e061616c3e6c4090 (patch) | |
tree | 385520662b80bb56e4debeff81dfad2d3e7c8d58 /scripts/clint.sh | |
parent | cb809069a83223d4faf5cd627b8292273dece2f8 (diff) | |
download | rneovim-6483a198e4bee1e80683ba12e061616c3e6c4090.tar.gz rneovim-6483a198e4bee1e80683ba12e061616c3e6c4090.tar.bz2 rneovim-6483a198e4bee1e80683ba12e061616c3e6c4090.zip |
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.
Diffstat (limited to 'scripts/clint.sh')
-rwxr-xr-x | scripts/clint.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/clint.sh b/scripts/clint.sh deleted file mode 100755 index 55eb5c9394..0000000000 --- a/scripts/clint.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -for file in $(cat clint-files.txt); do - ./clint.py $file || fail=1 -done - -if [ -n "$fail" ]; then - exit 1 -fi |