Skip to content

Commit 931b8d3

Browse files
committed
Separate model and feature support matrices by category (#1100)
Signed-off-by: Teresa Chen <boe20211@gmail.com>
1 parent f855503 commit 931b8d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.buildkite/scripts/generate_support_matrices.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ done
136136
for csv_file in "${feature_csv_files[@]}"; do
137137
if [[ -f "$csv_file" ]]; then
138138
echo "--- $csv_file ---"
139-
sorted_content=$(cat "$csv_file" | tail -n +2 | sort -V)
140-
header=$(cat "$csv_file" | head -n 1)
139+
sorted_content=$(tail -n +2 "$csv_file" | sort -V)
140+
header=$(head -n 1 "$csv_file")
141141
echo "$header" > "$csv_file"
142142
echo "$sorted_content" >> "$csv_file"
143143

0 commit comments

Comments
 (0)