From d11393faa6ce447f42299582662f332c2f86da7c Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Tue, 27 Aug 2024 16:28:36 -0600 Subject: [PATCH] tests --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index f739f78796..03a31c3013 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -101,7 +101,7 @@ json_result="[" # Sort, filter, and generate JSON objects while read -r dir; do if ! is_excluded "$dir"; then - json_result+=$(generate_json_new "$dir") + json_result+=$(generate_json "$dir") json_result+="," fi done <<< "$(echo "$all_directories" | sort)" # Feed sorted directories into the loop