Skip to content

Commit

Permalink
fix: quoting error in check-docs workflow (#1450)
Browse files Browse the repository at this point in the history
Backticks inside double-quotes will be treated as a shell escape.

Signed-off-by: Nathan J. Mehl <[email protected]>
  • Loading branch information
n-oden authored Aug 7, 2024
1 parent 4de0405 commit 96996d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
if: failure()

0 comments on commit 96996d9

Please sign in to comment.