diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index 703808406..f239d591e 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -137,7 +137,7 @@ jobs: if git fetch origin main:main && [[ ! "$COMMENT_BODY" =~ refresh ]]; then # Check each file - for file in "${files[@]}"; do + for file in ${files[@]}; do if git checkout master -- "benchmark-data/$file"; then present_files+=("$file") compare_command="$compare_command --files $file=$(pwd)/benchmark-data/$file,$(pwd)/benchmark-data-current/$file" @@ -147,7 +147,7 @@ jobs: fi done else - for file in "${files[@]}"; do + for file in ${files[@]}; do absent_files+=("$file") get_report_command="$get_report_command --files $file=$(pwd)/benchmark-data-current/$file" done