Skip to content

Commit

Permalink
fix syntax for extension
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed May 15, 2024
1 parent 05e85dd commit a0f91c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
filename_re=.*\.md$
" > .linkcheckerrc
for f in ${{ steps.file_list.outputs.files }}; do
if [ "${f##.*}" != "md" ]; then
if [ "${f##*.}" != "md" ]; then
continue
fi
for ef in ${{ steps.file_list.outputs.ignore_file_patterns }}; do
Expand Down

0 comments on commit a0f91c2

Please sign in to comment.