2022-01-03 02:15:14 -08:00
|
|
|
#!/usr/bin/env bash
|
2023-11-26 17:49:56 +00:00
|
|
|
# Nerd Fonts Version: 3.1.1
|
2022-01-03 02:15:14 -08:00
|
|
|
# Script Version: 1.1.0
|
|
|
|
# Gets all the font folder names to build the matrix for the github actions
|
|
|
|
|
|
|
|
# used for debugging
|
|
|
|
# set -x
|
2021-11-26 06:46:46 -08:00
|
|
|
|
|
|
|
main() {
|
2022-01-03 02:15:14 -08:00
|
|
|
# for testing a small subset (useful to prove out significant changes w/o all font overhead):
|
2022-01-03 05:50:08 -08:00
|
|
|
# jq '.fonts | .[] | .folderName' lib/fonts-small-subset.json | jq -sc
|
2022-01-03 02:15:14 -08:00
|
|
|
# add all the fonts to the matrix:
|
2022-01-03 05:50:08 -08:00
|
|
|
jq '.fonts | .[] | .folderName' lib/fonts.json | jq -sc
|
2021-11-26 06:46:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
main; exit
|