Use macos's non-gnu version of chmod

This commit is contained in:
Jess Bees
2022-11-14 11:41:47 -05:00
parent 61a978d261
commit de1b81a30a

View File

@@ -36,7 +36,7 @@ runs:
shell: sh shell: sh
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | run: |
for f in $(gchmod -c -R +r . | awk '{print substr($3, 2, length($3)-2)}') for f in $(chmod -v -R +r)
do do
echo "::warning::Added read permission to $f" echo "::warning::Added read permission to $f"
done done