account for TTC files.

This commit is contained in:
Matt Troutman 2024-09-27 11:48:16 -05:00
parent 6ef0940881
commit e1194a4877
No known key found for this signature in database

View file

@ -32,9 +32,13 @@ find . -name '*.zip' -type f -delete
# Recurse through all folders and subfolders and move all .ttf files into the TTF folder
find . -name '*.ttf' -type f -exec mv {} TTF \;
# Recurse through all folders and subfolders and move all .ttc files into the TTF folder
find . -name '*.ttc' -type f -exec mv {} TTF \;
# Recurse through all folders and subfolders and move all .otf files into the OTF folder
find . -name '*.otf' -type f -exec mv {} OTF \;
# Recurse through all folders and subfolders and delete all empty folders
find . -type d -empty -delete
touch .setup_complete