diff --git a/prep 1 font.sh b/prep 1 font.sh index 1d675d9..cc6776e 100755 --- a/prep 1 font.sh +++ b/prep 1 font.sh @@ -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 \ No newline at end of file