Skip to content

Commit

Permalink
🩹 [Patch]: Update font data structure to use ordered hashtable and im…
Browse files Browse the repository at this point in the history
…prove download path handling
  • Loading branch information
MariusStorhaug committed Jan 15, 2025
1 parent 631af22 commit 68e8699
Show file tree
Hide file tree
Showing 3 changed files with 142 additions and 141 deletions.
2 changes: 1 addition & 1 deletion scripts/Update-FontsData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $fonts = @()
$fontArchives = $release.assets.browser_download_url | Where-Object { $_ -like '*.zip' }

foreach ($fontArchive in $fontArchives) {
$fonts += @{
$fonts += [ordered]@{
Name = $fontArchive.Split('/')[-1].Split('.')[0]
URL = $fontArchive
}
Expand Down
Loading

0 comments on commit 68e8699

Please sign in to comment.