From de1b81a30a1f953042d42dab2fc2dd5938867ba8 Mon Sep 17 00:00:00 2001 From: Jess Bees Date: Mon, 14 Nov 2022 11:41:47 -0500 Subject: [PATCH] Use macos's non-gnu version of chmod --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 7c74026..083ef58 100644 --- a/action.yml +++ b/action.yml @@ -36,7 +36,7 @@ runs: shell: sh if: runner.os == 'macOS' run: | - for f in $(gchmod -c -R +r . | awk '{print substr($3, 2, length($3)-2)}') + for f in $(chmod -v -R +r) do echo "::warning::Added read permission to $f" done