From 953db4e205c6f87e8c4c08e4fd1fe61e87e3d2d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Fri, 24 Dec 2021 23:12:19 +0100 Subject: [PATCH] Update build-kernel.yml --- .github/workflows/build-kernel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-kernel.yml b/.github/workflows/build-kernel.yml index 740894bb..8164993b 100644 --- a/.github/workflows/build-kernel.yml +++ b/.github/workflows/build-kernel.yml @@ -55,7 +55,7 @@ jobs: - name: Remove previous artefacts if any run: | - sudo rm -rf changes.txt 2>/dev/null || true + sudo rm -rf changes 2>/dev/null || true - name: Download changes uses: actions/download-artifact@v2 @@ -66,7 +66,7 @@ jobs: id: list_dirs run: | - echo ::set-output name=matrix::$(for x in $(cat changes); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq) + echo ::set-output name=matrix::$(for x in $(cat changes 2>/dev/null); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq) gcc: needs: [ Prepare ]