Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jovi1994 committed Dec 7, 2024
1 parent ba2bf8b commit 8d830f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions steps/report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@ latex_escape() {

files=("${TARGET}/data/aggregation/*.csv")

if [ "${files}" != "${TARGET}/data/aggregation/*.csv" ]; then
if compgen -G "${files}" > /dev/null; then
# Process each CSV file in the aggregation directory
for file in "${files[@]}"; do
for file in ${files}; do
# Extract the metric name (e.g., AHF from AHF.90th_percentile.csv)
metric=$(basename "${file}" | cut -d '.' -f 1)

# Extract values from the CSV file
value=$(<"${file}")

Expand Down

0 comments on commit 8d830f7

Please sign in to comment.