From 0e7c70ba0b8186e0b4b27df23b4b3a350846fec1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Thu, 11 May 2017 07:21:12 +0200 Subject: [PATCH] ceph-docker-lint: remove reverse grep for NOT_MAINTAINED_ANYMORE MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- ceph-docker-lint/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3