Skip to content

Commit 18d76b1

Browse files
authored
docs_flaw_checker.yml3 - use sed to strip out the escapes (#25463)
1 parent 7225807 commit 18d76b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs_flaw_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
echo "$ALL_CHANGED_FILES"
4646
# echo "$ALL_CHANGED_FILES" > ./logs/prFiles.json
47-
jq '.' <<< "$ALL_CHANGED_FILES" > ./logs/prFiles.json
47+
echo "$ALL_CHANGED_FILES" | sed 's/\\//g' | jq '.' > ./logs/prFiles.json
4848
env:
4949
ALL_CHANGED_FILES: ${{ steps.get_changed_markdown_english.outputs.all_changed_files }}
5050

0 commit comments

Comments
 (0)