Update weekly_bashbeautify.yaml

This commit is contained in:
Alexandre
2024-01-20 07:53:30 +01:00
committed by GitHub
parent 0e2c870d6a
commit 39af6376cd

View File

@@ -28,11 +28,10 @@ jobs:
- name: Run Beautysh
run: |
# shellcheck disable=SC2035
find . -name '*.sh' -print0 | xargs -0 beautysh --indent-size 4
shopt -s globstar nullglob
if compgen -G "**/*.sh" > /dev/null; then
beautysh **/*.sh --indent-size 4 --check
beautysh -- **/*.sh --indent-size 4 --check
fi
shopt -u globstar nullglob