mirror of
https://github.com/libretro/libretro-super
synced 2025-01-26 03:35:36 +00:00
Merge pull request #1147 from libretro/frangarcj-fix-ttf
Create directory before copy
This commit is contained in:
commit
92656d8e74
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user