Merge pull request #44 from KyeRussell/patch-1

Don't change file permissions of other files
This commit is contained in:
Yoann Chaudet
2022-12-16 09:59:57 -08:00
committed by GitHub

View File

@@ -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 \
@@ -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 \