From d61d3c9deb09bbe3c7afd8347a4d8e662b770d82 Mon Sep 17 00:00:00 2001 From: d3vyce <44915747+d3vyce@users.noreply.github.com> Date: Tue, 28 Mar 2023 20:35:48 +0200 Subject: [PATCH] Update shellcheck.yml --- .gitea/workflows/shellcheck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index ed0cd0a..bb76782 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -9,6 +9,6 @@ jobs: - name: Set up shellcheck run: | apt update - apt install -y shellcheck + apt install -y shellcheck - name: Analysing the code with shellcheck - run: shellcheck -S warning *.sh + run: find . -type f -name "*.sh" | xargs shellcheck -S warning