Ignore pretty name in list_csv sorting

This commit is contained in:
Liam 2024-04-30 15:56:35 -07:00 committed by Martin Wimpress
parent e935f80928
commit b61dd9336b
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ function list_csv() {
CSV_DATA="$(csv_data)" CSV_DATA="$(csv_data)"
echo "Display Name,OS,Release,Option,Downloader,PNG,SVG" echo "Display Name,OS,Release,Option,Downloader,PNG,SVG"
sort -f <<<"${CSV_DATA}" sort -t',' -k2,2 <<<"${CSV_DATA}"
exit 0 exit 0
} }