]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-container-lint: add missing pipe 1930/head
authorDimitri Savineau <dsavinea@redhat.com>
Thu, 4 Nov 2021 19:23:10 +0000 (15:23 -0400)
committerDimitri Savineau <dsavinea@redhat.com>
Thu, 4 Nov 2021 19:23:10 +0000 (15:23 -0400)
The pipe was removed in the previous change but it shouldn't.

Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
ceph-container-lint/build/build

index e8d0fdaadbf492b3ea33786a16d9b58a79dac7cd..24c8a7203b3fb40af61e1beeabb8c2bd87e5169b 100755 (executable)
@@ -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