diff --git a/.github/workflows/onpush_chmod.yaml b/.github/workflows/onpush_chmod.yaml index fba52e9a4..b0fe325b2 100644 --- a/.github/workflows/onpush_chmod.yaml +++ b/.github/workflows/onpush_chmod.yaml @@ -18,9 +18,7 @@ jobs: - name: Run script file id: chmod run: | - for f in `find . -name '*.sh' -o -regex './s?bin/[^/]+' -o -regex './usr/sbin/[^/]+' -o -regex './usr/lib/[^/]+' `;do \ - ( cd `dirname $f` && git update-index --chmod=+x `basename $f` ) \ - done + for f in `find . -name '*.sh' -o -regex './s?bin/[^/]+' -o -regex './usr/sbin/[^/]+' -o -regex './usr/lib/[^/]+' `;do ( cd `dirname $f` && git update-index --chmod=+x `basename $f` ); done shell: bash - name: Create New Pull Request If Needed if: steps.calibre.outputs.markdown != ''