mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Add iTunesArtwork and some logs to the script
This commit is contained in:
parent
9e59def4cc
commit
e6b3ed47b4
1 changed files with 4 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -x
|
||||
#!/bin/sh
|
||||
|
||||
# tag_missing_resources.sh
|
||||
#
|
||||
|
|
@ -47,9 +47,10 @@ fi
|
|||
|
||||
resources=$(dirname $0)/../Resources/
|
||||
|
||||
for file in $(find $resources -name "$icon_prefix*.png"); do
|
||||
for file in $(find $(dirname $0)/.. -name "$icon_prefix*.png" -or -name "iTunesArtwork*" ); do
|
||||
dimension=$(identify $file | cut -d' ' -f3 | cut -d x -f1)
|
||||
convert $logo -resize ${dimension}x${dimension} $resources/$(basename $file)
|
||||
echo "Resizing to dimension ${dimension}x${dimension} for $(basename $file)"
|
||||
convert $logo -resize ${dimension}x${dimension} $file
|
||||
done
|
||||
|
||||
echo "**********************
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue