Skip to content

Commit a753861

Browse files
authored
Merge pull request #69 from actions/reapply-chmod-removal-for-v2
Re-remove built-in `chmod` commands for `v2`
2 parents 3138c05 + dca6bac commit a753861

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ runs:
2121
shell: sh
2222
if: runner.os == 'Linux'
2323
run: |
24-
chmod -c -R +rX "$INPUT_PATH" | while read line; do
25-
echo "::warning title=Invalid file permissions automatically fixed::$line"
26-
done
2724
tar \
2825
--dereference --hard-dereference \
2926
--directory "$INPUT_PATH" \
@@ -39,9 +36,6 @@ runs:
3936
shell: sh
4037
if: runner.os == 'macOS'
4138
run: |
42-
chmod -v -R +rX "$INPUT_PATH" | while read line; do
43-
echo "::warning title=Invalid file permissions automatically fixed::$line"
44-
done
4539
gtar \
4640
--dereference --hard-dereference \
4741
--directory "$INPUT_PATH" \

0 commit comments

Comments
 (0)