Merge pull request #1147 from libretro/frangarcj-fix-ttf

Create directory before copy
This commit is contained in:
Twinaphex 2019-10-16 11:26:06 +02:00 committed by GitHub
commit 92656d8e74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,8 +67,8 @@ convert_xmb_assets()
for theme in `ls $src_dir`; do
if [ -d $src_dir/$theme ] ; then
theme=`basename "$theme"`
cp $src_dir/$theme/*.* $dst_dir/$theme/
mkdir -p "$dst_dir/$theme/png"
cp $src_dir/$theme/*.* $dst_dir/$theme/
for png in `ls $src_dir/$theme/png/*.png -d`; do
local name=`basename "$png" .png`
local src_file="$src_dir/$theme/src/$name.svg"