Always include generic survey pledge results.

This commit is contained in:
Kim Taylor
2024-09-25 12:18:00 +10:00
parent 1f5dc18e81
commit 620d1bf06d

View File

@@ -11,7 +11,8 @@ candidates_files=()
for folder in "$DATA_PATH"/*; do
if test -f "$folder"/candidates.csv; then
candidates_files+=("$folder"/candidates.csv)
elif test -f "$folder"/candidates-generic.csv; then
fi
if test -f "$folder"/candidates-generic.csv; then
candidates_files+=("$folder"/candidates-generic.csv)
fi
done