nerd-fonts/bin/scripts/get-font-names-from-json.sh
2024-04-12 14:31:51 +00:00

16 lines
467 B
Bash
Executable file

#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
# Gets all the font folder names to build the matrix for the github actions
# used for debugging
# set -x
main() {
# for testing a small subset (useful to prove out significant changes w/o all font overhead):
# jq '.fonts | .[] | .folderName' lib/fonts-small-subset.json | jq -sc
# add all the fonts to the matrix:
jq '.fonts | .[] | .folderName' lib/fonts.json | jq -sc
}
main; exit