diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-08 06:50:54 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-08 13:49:45 -0300 |
commit | 08059114349d689d2a45bbeb983fe78217ba5f1c (patch) | |
tree | f41728261cdd461232b79866ced03fbb6f1f80f0 | |
parent | f826b4c616961450307b2a88763b0b48dfa44524 (diff) | |
download | rneovim-08059114349d689d2a45bbeb983fe78217ba5f1c.tar.gz rneovim-08059114349d689d2a45bbeb983fe78217ba5f1c.tar.bz2 rneovim-08059114349d689d2a45bbeb983fe78217ba5f1c.zip |
Run clint.py in some files
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | clint-files.txt | 2 | ||||
-rwxr-xr-x | scripts/clint.sh | 5 |
3 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 95e977ae4d..b0f2279fbb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ compiler: - clang - gcc before_install: + - ./scripts/clint.sh - sudo ./scripts/travis-setup.sh script: - ./scripts/travis.sh diff --git a/clint-files.txt b/clint-files.txt new file mode 100644 index 0000000000..e76997798a --- /dev/null +++ b/clint-files.txt @@ -0,0 +1,2 @@ +src/os/job.c +src/os/job.h diff --git a/scripts/clint.sh b/scripts/clint.sh new file mode 100755 index 0000000000..1453411e1c --- /dev/null +++ b/scripts/clint.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +for file in $(cat clint-files.txt); do + ./clint.py $file +done |