2022-01-03 12:15:14 +02:00
|
|
|
#!/usr/bin/env bash
|
2022-09-07 10:05:53 +02:00
|
|
|
# Nerd Fonts Version: 2.2.2
|
2022-01-03 12:15:14 +02: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 16:46:46 +02:00
|
|
|
|
|
|
|
main() {
|
2022-01-03 12:15:14 +02:00
|
|
|
# for testing a small subset (useful to prove out significant changes w/o all font overhead):
|
2022-01-03 15:50:08 +02:00
|
|
|
# jq '.fonts | .[] | .folderName' lib/fonts-small-subset.json | jq -sc
|
2022-01-03 12:15:14 +02:00
|
|
|
# add all the fonts to the matrix:
|
2022-01-03 15:50:08 +02:00
|
|
|
jq '.fonts | .[] | .folderName' lib/fonts.json | jq -sc
|
2021-11-26 16:46:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main; exit
|