Skip to content

Commit ff5bafe

Browse files
silence shellcheck
1 parent 5e5be3e commit ff5bafe

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/reusable-check-html-ids.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
name: html-ids-head.json.gz
5252
path: /tmp
5353
- name: 'Check for removed HTML IDs'
54-
run: >-
55-
python Doc/tools/check-html-ids.py -v check
56-
/tmp/html-ids-base.json.gz /tmp/html-ids-head.json.gz
57-
$([ -f Doc/tools/removed-ids.txt ] && echo "--exclude-file Doc/tools/removed-ids.txt")
54+
run: |
55+
# shellcheck disable=SC2046
56+
python Doc/tools/check-html-ids.py -v check \
57+
/tmp/html-ids-base.json.gz /tmp/html-ids-head.json.gz \
58+
$([ -f Doc/tools/removed-ids.txt ] && echo "--exclude-file Doc/tools/removed-ids.txt")

0 commit comments

Comments
 (0)