account for TTC files.
This commit is contained in:
parent
6ef0940881
commit
e1194a4877
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue