Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't change file permissions of other files
Fixes #43
  • Loading branch information
Kye Russell authored and GitHub committed Dec 16, 2022
1 parent c8641e8 commit 98c5608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -21,7 +21,7 @@ runs:
shell: sh
if: runner.os == 'Linux'
run: |
chmod -c -R +rX . | while read line; do
chmod -c -R +rX "$INPUT_PATH" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
tar \
Expand All @@ -39,7 +39,7 @@ runs:
shell: sh
if: runner.os == 'macOS'
run: |
chmod -v -R +rX . | while read line; do
chmod -v -R +rX "$INPUT_PATH" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
gtar \
Expand Down

0 comments on commit 98c5608

Please sign in to comment.