From: Sébastien Han Date: Thu, 11 May 2017 05:21:12 +0000 (+0200) Subject: ceph-docker-lint: remove reverse grep for NOT_MAINTAINED_ANYMORE X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F711%2Fhead;p=ceph-build.git ceph-docker-lint: remove reverse grep for NOT_MAINTAINED_ANYMORE As per PR: https://github.com/ceph/ceph-docker/pull/632 the directory NOT_MAINTAINED_ANYMORE does not exist anymore. Signed-off-by: Sébastien Han --- diff --git a/ceph-docker-lint/build/build b/ceph-docker-lint/build/build index 6a78663d..8b3a173b 100755 --- a/ceph-docker-lint/build/build +++ b/ceph-docker-lint/build/build @@ -9,7 +9,7 @@ IGNORE_THESE_CODES="" function generate_filelist(){ if [[ "$pull_request_id" -eq "" || "${ghprbCommentBody:-}" = "jenkins lint all" ]] then - find . -name '*.sh'| grep -v "NOT_MAINTAINED_ANYMORE" + find . -name '*.sh' else curl -XGET "https://api.github.com/repos/ceph/ceph-docker/pulls/$pull_request_id/files" | jq '.[].filename' | # just the files please