From: Dimitri Savineau Date: Thu, 4 Nov 2021 19:23:10 +0000 (-0400) Subject: ceph-container-lint: add missing pipe X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c439345c8e0d6d6ca2141445239f7c4f61bb4645;p=ceph-build.git ceph-container-lint: add missing pipe The pipe was removed in the previous change but it shouldn't. Signed-off-by: Dimitri Savineau --- diff --git a/ceph-container-lint/build/build b/ceph-container-lint/build/build index e8d0fdaa..24c8a720 100755 --- a/ceph-container-lint/build/build +++ b/ceph-container-lint/build/build @@ -12,7 +12,7 @@ function generate_filelist(){ find . -name '*.sh' | grep -vE "$IGNORE_THESE_FILES" else curl -XGET "https://api.github.com/repos/ceph/ceph-container/pulls/$pull_request_id/files" | - jq -r '.[] | select(.status != "removed") | .filename' # just the files please (not removed) + jq -r '.[] | select(.status != "removed") | .filename' | # just the files please (not removed) grep ".sh$" | # just the bash grep -vE "$IGNORE_THESE_FILES" fi