chore: skip appup file in vsn check script

This commit is contained in:
Zaiming Shi 2021-10-15 10:04:45 +02:00
parent 9038da0bd2
commit 08c2907d44
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ while read -r app; do
changed="$(git diff --name-only "$latest_release"...HEAD \ changed="$(git diff --name-only "$latest_release"...HEAD \
-- "$app_path/src" \ -- "$app_path/src" \
-- "$app_path/priv" \ -- "$app_path/priv" \
-- "$app_path/c_src" | wc -l)" -- "$app_path/c_src" | { grep -v -E 'appup\.src' || true; } | wc -l)"
if [ "$changed" -gt 0 ]; then if [ "$changed" -gt 0 ]; then
echo "$src_file needs a vsn bump" echo "$src_file needs a vsn bump"
bad_app_count=$(( bad_app_count + 1)) bad_app_count=$(( bad_app_count + 1))