From 6c248c0b93e20ce367e470cff23c3ad6f7337d9b Mon Sep 17 00:00:00 2001 From: Paul Fenwick Date: Mon, 20 Oct 2014 11:27:38 +1100 Subject: [PATCH] Fixup travis to ignore files in our CKAN repo. Otherwise it tries to validate BootKAN fragments. --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a0f174cf7b..4ef06552fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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) +