From d74c610bb478721307e9c8e501f0e05cd5c358c2 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Fri, 21 Feb 2025 00:10:27 +0100 Subject: [PATCH] Fixed Bash syntax. --- .github/workflows/SphinxDocumentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/SphinxDocumentation.yml b/.github/workflows/SphinxDocumentation.yml index d0e333e..6a0ee10 100644 --- a/.github/workflows/SphinxDocumentation.yml +++ b/.github/workflows/SphinxDocumentation.yml @@ -227,7 +227,7 @@ jobs: if [[ $found -eq 0 ]]; then printf "[SKIPPED]\n" fi - done <<<$(find . -type f -not -iname "*.cls" -not -iname "*.sty" -not -iname "*.xdy" -not -iname "*.svg" -not -iname "*.png" -not -iname "*.jpg" | sed 's:./::') + done < <(find . -type f -not -iname "*.cls" -not -iname "*.sty" -not -iname "*.xdy" -not -iname "*.svg" -not -iname "*.png" -not -iname "*.jpg" | sed 's:./::') - name: Workaround II - https://github.com/sphinx-doc/sphinx/issues/13189 if: inputs.latex_artifact != '' @@ -259,7 +259,7 @@ jobs: printf "[FAILED]\n" fi fi - done <<<$(find . -type f -iname "*.$imageExt" | sed 's:./::') + done < <(find . -type f -iname "*.$imageExt" | sed 's:./::') done - name: 📤 Upload 'LaTeX Documentation' artifact