Ignore `not_paths` for `*.md` files when bumping version

This commit is contained in:
Trent Nelson 2021-03-15 13:06:04 -06:00 committed by mergify[bot]
parent 853e735edf
commit 510760d81b
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ done
# shellcheck disable=2207,SC2068 # Don't want a positional arg if `not-paths` is empty
Cargo_tomls=($(find . -mindepth 2 -name Cargo.toml ${not_paths[@]}))
# shellcheck disable=2207
markdownFiles=($(find . -name "*.md"))
# shellcheck disable=2207,SC2068 # Don't want a positional arg if `not-paths` is empty
markdownFiles=($(find . -name "*.md" ${not_paths[@]}))
# Collect the name of all the internal crates
crates=()