From 6e477fceebf9edf686ef484ab47178ab50f2ef91 Mon Sep 17 00:00:00 2001 From: JEEVITHA KANNAN K S Date: Thu, 19 Sep 2024 05:48:22 +0530 Subject: [PATCH] Update bashisms.yml (#480) --- .github/workflows/bashisms.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bashisms.yml b/.github/workflows/bashisms.yml index 6d351098..e667f6d2 100644 --- a/.github/workflows/bashisms.yml +++ b/.github/workflows/bashisms.yml @@ -19,9 +19,8 @@ jobs: - uses: actions/checkout@v2 - name: Install devscripts - run: sudo apt install devscripts + run: sudo apt-get update && sudo apt-get install devscripts - - name: Concatenate all .sh files and check for bashisms + - name: Check for bashisms working-directory: tabs - run: | - find . -name '*.sh' -exec checkbashisms {} + > all_scripts.sh + run: find . -name '*.sh' | xargs -P 4 -n 1 checkbashisms