From c439345c8e0d6d6ca2141445239f7c4f61bb4645 Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Thu, 4 Nov 2021 15:23:10 -0400 Subject: [PATCH] ceph-container-lint: add missing pipe The pipe was removed in the previous change but it shouldn't. Signed-off-by: Dimitri Savineau --- ceph-container-lint/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5