From aa5d3b24d842372c750f76e6bf57eada8223d29f Mon Sep 17 00:00:00 2001 From: Alex Somesan Date: Tue, 1 Oct 2024 19:07:20 +0200 Subject: [PATCH] Use single quotes to avoid backticks being cosidered as interpolation of subcommand output. --- .github/workflows/documentation-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation-check.yaml b/.github/workflows/documentation-check.yaml index bdc29395f1..b3476f61e1 100644 --- a/.github/workflows/documentation-check.yaml +++ b/.github/workflows/documentation-check.yaml @@ -37,6 +37,6 @@ jobs: - name: Undocumented changes run: | - echo "Documentation is not up to date. Please refer to the `Making Changes` in the Contribution Guide on how to properly update documentation." + echo 'Documentation is not up to date. Please refer to the `Making Changes` in the Contribution Guide on how to properly update documentation.' exit 1 if: failure() \ No newline at end of file