Fixup travis to ignore files in our CKAN repo.

Otherwise it tries to validate BootKAN fragments.
This commit is contained in:
Paul Fenwick 2014-10-20 11:27:38 +11:00
parent 09f523a7eb
commit 6c248c0b93
1 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,9 @@ install:
- git clone https://github.com/KSP-CKAN/CKAN.git
# Our test is merely checking that all the ckan files validate
# against the current spec.
# against the current spec. We exclude the CKAN directory we just
# checked out.
script:
- CKAN/bin/ckan-validate $(find . -name '*.ckan')
- CKAN/bin/ckan-validate $(find . -path ./CKAN -prune -o -name '*.ckan' -print)