Update bashisms.yml (#480)

This commit is contained in:
JEEVITHA KANNAN K S 2024-09-19 05:48:22 +05:30 committed by GitHub
parent a7e6ea0246
commit 6e477fceeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,9 +19,8 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install devscripts - 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 working-directory: tabs
run: | run: find . -name '*.sh' | xargs -P 4 -n 1 checkbashisms
find . -name '*.sh' -exec checkbashisms {} + > all_scripts.sh