Skip to content

Commit 96996d9

Browse files
authored
fix: quoting error in check-docs workflow (#1450)
Backticks inside double-quotes will be treated as a shell escape. Signed-off-by: Nathan J. Mehl <[email protected]>
1 parent 4de0405 commit 96996d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/documentation-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
3838
- name: Undocumented changes
3939
run: |
40-
echo "Documentation is not up to date. Please refer to the `Making Changes` in the Contribution Guide on how to properly update documentation."
40+
echo 'Documentation is not up to date. Please refer to the `Making Changes` in the Contribution Guide on how to properly update documentation.'
4141
exit 1
42-
if: failure()
42+
if: failure()

0 commit comments

Comments
 (0)