mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-11-19 16:39:20 +02:00
Use the most optimal compression level of zip just in case
This commit is contained in:
parent
2cb0488aaf
commit
0b66b58fa8
@ -45,12 +45,12 @@ do
|
||||
[[ -d "$outputdir" ]] || mkdir -p "$outputdir"
|
||||
|
||||
# -ic (ignore case not working)
|
||||
zip "$outputdir/$basename" -rj "$searchdir" -i '*.[o,t]tf' -i '*.[O,T]TF'
|
||||
zip -9 "$outputdir/$basename" -rj "$searchdir" -i '*.[o,t]tf' -i '*.[O,T]TF'
|
||||
zipStatus=$?
|
||||
if [ "$zipStatus" != "0" ]
|
||||
then
|
||||
echo "$LINE_PREFIX Could not create archive with the path junked (-j option) - likely same font names for different paths, zip status: $zipStatus"
|
||||
echo "$LINE_PREFIX Retrying with full path"
|
||||
zip "$outputdir/$basename" -r "$searchdir" -i '*.[o,t]tf' -i '*.[O,T]TF'
|
||||
zip -9 "$outputdir/$basename" -r "$searchdir" -i '*.[o,t]tf' -i '*.[O,T]TF'
|
||||
fi;
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user