From 816f12e3bdb2097a5b9b292b46d30f2ed93b8cbb Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sat, 7 Sep 2024 17:11:56 -0400 Subject: [PATCH] fix file to grep --- tests/lib/installed-state.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/installed-state.sh b/tests/lib/installed-state.sh index 6b48c37c..174b37e5 100644 --- a/tests/lib/installed-state.sh +++ b/tests/lib/installed-state.sh @@ -183,7 +183,7 @@ installed_state_compare() { if [ $MIGRATION_ML_VERSION_A -le 2 -a $MIGRATION_ML_VERSION_B -ge 3 ]; then # miabldap migration level <=2 does not have quota fields, so # remove them from the comparison - grep -vE '"(quota|box_quota|box_size|percent)":' "$s2/users.json" > "$s2/users-cmp2.json" || changed="true" + grep -vE '"(quota|box_quota|box_size|percent)":' "$s2/users-cmp.json" > "$s2/users-cmp2.json" || changed="true" cp "$s2/users-cmp2.json" "$s2/users-cmp.json" && rm -f "$s2/users-cmp2.json" fi