Merge pull request #5932 from zmstone/chore-scripts-skip-appup-file-app-vsn-check

chore: skip appup file in vsn check script
This commit is contained in:
Zaiming (Stone) Shi 2021-10-15 12:59:18 +02:00 committed by GitHub
commit 51d2fa1359
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 \
-- "$app_path/src" \
-- "$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
echo "$src_file needs a vsn bump"
bad_app_count=$(( bad_app_count + 1))