From 35b101ad66509eb1669fd3c25097c50cf213b32e Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 9 Jun 2023 09:31:29 -0400 Subject: [PATCH] test-compare-two-versions.sh: also ignore differences in HeudiconvVersion field in jsons since we have it there now --- utils/test-compare-two-versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/test-compare-two-versions.sh b/utils/test-compare-two-versions.sh index 9dd7e77a..271d217d 100755 --- a/utils/test-compare-two-versions.sh +++ b/utils/test-compare-two-versions.sh @@ -54,7 +54,7 @@ function show_diff() { #git remote add rolando "$outdir/rolando" #git fetch rolando # git diff --stat rolando/master.. - if diff -Naur --exclude=.git --ignore-matching-lines='^\s*id\s*=.*' "$v1" "$v2" >| "$diff_full"; then + if diff -Naur --exclude=.git --ignore-matching-lines='^\s*\(id\s*=.*\|"HeudiconvVersion": \)' "$v1" "$v2" >| "$diff_full"; then echo "Results are identical" else echo "Results differ: $diff_full"