nerd-fonts/bin/scripts/get-font-names-from-json.sh

17 lines
467 B
Bash
Raw Normal View History

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