From 6899fd8becd9a5cbf77b5061763e18c0f0d53306 Mon Sep 17 00:00:00 2001 From: joelsvensson Date: Tue, 4 Mar 2025 15:06:23 +0100 Subject: [PATCH] fix: ShellCheck SC2162 lint error --- .github/workflows/github_pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_pages.yml b/.github/workflows/github_pages.yml index 9c279ab1..15fa66ed 100644 --- a/.github/workflows/github_pages.yml +++ b/.github/workflows/github_pages.yml @@ -82,7 +82,7 @@ jobs: subprocess.run(cmd, shell=True, check=True) - name: Fix permissions run: | - chmod -c -R +rX "${{ inputs.output-path }}" | while read line; do + chmod -c -R +rX "${{ inputs.output-path }}" | while read -r line; do echo "::warning title=Invalid file permissions automatically fixed::$line" done - name: Upload artifact